| HTML-DOM documentation | Contained in the HTML-DOM distribution. |
HTML::DOM::Exception - The Exception interface for HTML::DOM
use HTML::DOM::Exception 'INVALID_CHARACTER_ERR';
eval {
die new HTML::DOM::Exception
INVALID_CHARACTER_ERR,
'Only ASCII characters allowed!'
};
$@ == INVALID_CHARACTER_ERR; # true
print $@; # prints "Only ASCII characters allowed!\n";
This module implementations the W3C's DOMException and EventException interfaces. HTML::DOM::Exception objects stringify to the message passed to the constructer and numify to the error number (see below, under 'EXPORTS').
This class method creates a new exception object. $type is expected to
be an integer (you can use the constants listed under 'EXPORTS').
$message is the error message.
Returns the error code. Same as 0+$errr.
The following constants are optionally exported. The descriptions are copied from the DOM spec.
If index or size is negative, or greater than the allowed value
If the specified range of text does not fit into a DOMString
If any node is inserted somewhere it doesn't belong
If a node is used in a different document than the one that created it (that doesn't support it)
If an invalid character is specified, such as in a name.
If data is specified for a node which does not support data
If an attempt is made to modify an object where modifications are not allowed
If an attempt was made to reference a node in a context where it does not exist
If the implementation does not support the type of object requested
If an attempt is made to add an attribute that is already inuse elsewhere
If an attempt is made to use an object that is not, or is no longer, usable
If an invalid or illegal string is specified
If an attempt is made to modify the type of the underlying object
If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces
If a parameter or an operation is not supported by the underlying object
If the Event's type was not specified by initializing the event before the method was called. Specification of the Event's type as null or an empty string will also trigger this exception.
| HTML-DOM documentation | Contained in the HTML-DOM distribution. |
package HTML::DOM::Exception; use constant { # DOMException: INDEX_SIZE_ERR => 1, DOMSTRING_SIZE_ERR => 2, HIERARCHY_REQUEST_ERR => 3, WRONG_DOCUMENT_ERR => 4, INVALID_CHARACTER_ERR => 5, NO_DATA_ALLOWED_ERR => 6, NO_MODIFICATION_ALLOWED_ERR => 7, NOT_FOUND_ERR => 8, NOT_SUPPORTED_ERR => 9, INUSE_ATTRIBUTE_ERR => 10, INVALID_STATE_ERR => 11, SYNTAX_ERR => 12, INVALID_MODIFICATION_ERR => 13, NAMESPACE_ERR => 14, INVALID_ACCESS_ERR => 15, # EventException: UNSPECIFIED_EVENT_TYPE_ERR => 0, }; use Exporter 5.57 'import'; our $VERSION = '0.048'; our @EXPORT_OK = qw' INDEX_SIZE_ERR DOMSTRING_SIZE_ERR HIERARCHY_REQUEST_ERR WRONG_DOCUMENT_ERR INVALID_CHARACTER_ERR NO_DATA_ALLOWED_ERR NO_MODIFICATION_ALLOWED_ERR NOT_FOUND_ERR NOT_SUPPORTED_ERR INUSE_ATTRIBUTE_ERR INVALID_STATE_ERR SYNTAX_ERR INVALID_MODIFICATION_ERR NAMESPACE_ERR INVALID_ACCESS_ERR UNSPECIFIED_EVENT_TYPE_ERR '; our %EXPORT_TAGS = (all => [@EXPORT_OK]); use overload fallback => 1, '0+' => \&code, '""' => sub { $_[0][1] =~ /^(.*?)\n?\z/s; "$1\n" }, ; sub new { bless [@_[1,2]], $_[0]; } sub code { $_[0][0] } 'true' __END__
sub new { bless [@_[1,2]], shift; }