added InvalidParam, renamed WrongObjectType to InvalidObject

This commit is contained in:
JT Smith 2008-02-26 23:00:54 +00:00
parent 0f8f605872
commit fc88668399

View file

@ -20,16 +20,20 @@ use Exception::Class (
'WebGUI::Error' => {
description => "A general error occured.",
},
'WebGUI::Error::InvalidObject' => {
isa => 'WebGUI::Error::InvalidParam',
description => "Expected to get a reference to an object type that wasn't gotten.",
fields => ["expected","got"],
},
'WebGUI::Error::InvalidParam' => {
isa => 'WebGUI::Error',
description => "Expected to get a param we didn't get.",
},
'WebGUI::Error::ObjectNotFound' => {
isa => 'WebGUI::Error',
description => "The object you were try to retrieve does not exist.",
fields => ["id"],
},
'WebGUI::Error::WrongObjectType' => {
isa => 'WebGUI::Error',
description => "Expected to get a reference to an object type that wasn't gotten.",
fields => ["expected","got"],
},
);
@ -95,6 +99,22 @@ A read only exception method that returns the line number where the exception wa
A read only exception method that returns the package name where the exception was thrown.
=head2 WebGUI::Error::InvalidObject
Used when looking to make sure objects are passed in that you expect. ISA WebGUI::Error::InvalidParam.
=head3 expected
The type of object expected ("HASH", "ARRAY", "WebGUI::User", etc).
=head3 got
The object type we got.
=head2 WebGUI::Error::InvalidParam
Used when an invalid parameter is passed into a subroutine.
=head2 WebGUI::Error::ObjectNotFound
Used when an object is trying to be retrieved, but does not exist. ISA WebGUI::Error.
@ -105,20 +125,6 @@ The id of the object to be retrieved.
=cut
=head2 WebGUI::Error::WrongObjectType
Used when looking to make sure objects are passed in that you expect. ISA WebGUI::Error.
=head3 expected
The type of object expected ("HASH", "ARRAY", "WebGUI::User", etc).
=head3 got
The object type we got.
=cut
1;