From ce8b93aad9f30347ded28ca9280c505e5853ba7e Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Tue, 23 Mar 2010 01:58:22 +0000 Subject: [PATCH] Added InvalidParameters exception InvalidParameters exception to be used when a page should be aborted because the parameters are malformed. --- HandBrakeCluster/Exceptions.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/HandBrakeCluster/Exceptions.class.php b/HandBrakeCluster/Exceptions.class.php index e900b63..2d2caec 100644 --- a/HandBrakeCluster/Exceptions.class.php +++ b/HandBrakeCluster/Exceptions.class.php @@ -15,6 +15,7 @@ class HandBrakeCluster_Exception_UnknownSetting extends HandBrakeCluster class HandBrakeCluster_Exception_TemplateException extends HandBrakeCluster_Exception {}; class HandBrakeCluster_Exception_Unauthorized extends HandBrakeCluster_Exception_TemplateException {}; class HandBrakeCluster_Exception_FileNotFound extends HandBrakeCluster_Exception_TemplateException {}; +class HandBrakeCluster_Exception_InvalidParameters extends HandBrakeCluster_Exception_TemplateException {}; class HandBrakeCluster_Exception_InvalidSourceDirectory extends HandBrakeCluster_Exception {};