From 1cc440a885a494ac7eccff4d137f38d9f44b14b0 Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Mon, 26 Dec 2011 01:11:37 +0000 Subject: [PATCH] Fix typo in exception names --- source/lib/SihnonFramework/Exceptions.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/SihnonFramework/Exceptions.class.php b/source/lib/SihnonFramework/Exceptions.class.php index f7bfa87..bf0b0a0 100644 --- a/source/lib/SihnonFramework/Exceptions.class.php +++ b/source/lib/SihnonFramework/Exceptions.class.php @@ -45,7 +45,7 @@ class SihnonFramework_Exception_UnknownUser extends SihnonFramework_E class SihnonFramework_Exception_IncorrectPassword extends SihnonFramework_Exception_AuthException {}; class SihnonFramework_Exception_ValidationException extends SihnonFramework_Exception {}; -class SihnonFramework_Exception_InvalidContent extends SihnonFramework_ValidationException {}; -class SihnonFramework_Exception_InvalidLength extends SihnonFramework_ValidationoException {}; +class SihnonFramework_Exception_InvalidContent extends SihnonFramework_Exception_ValidationException {}; +class SihnonFramework_Exception_InvalidLength extends SihnonFramework_Exception_ValidationException {}; ?>