Adding RuntimeException classes for Dispatcher.

This commit is contained in:
mark_story 2010-08-27 22:48:02 -04:00
parent 1e6064ceae
commit 1980c924b9

View file

@ -657,3 +657,10 @@ class Dispatcher extends Object {
header($header);
}
}
/**
* Runtime Exceptions for dispatcher.
*/
class MissingControllerException extends RuntimeException {}
class MissingActionException extends RuntimeException {}
class PrivateActionException extends RuntimeException {}