SYNOPSIS

  use CSS::DOM::Exception 'SYNTAX_ERR';

  eval {
          die new CSS::DOM::Exception
                  SYNTAX_ERR,
                  '1 is not a valid property declaration'
  };

  $@ == SYNTAX_ERR; # true

  print $@;    # prints "1 is not a valid property declaration\n";

DESCRIPTION

This module implementations the W3C's DOMException interface. CSS::DOM::Exception objects stringify to the message passed to the constructer and numify to the error number (see below, under '\s-1EXPORTS\s0').

METHODS

This class method creates a new exception object. $type is expected to be an integer (you can use the constants listed under '\s-1EXPORTS\s0'). $message is the error message.

EXPORTS

The following constants are optionally exported. The descriptions are copied from the \s-1DOM\s0 spec.

\s-1INDEX_SIZE_ERR\s0 (1)

If index or size is negative, or greater than the allowed value

\s-1DOMSTRING_SIZE_ERR\s0 (2)

If the specified range of text does not fit into a DOMString

\s-1HIERARCHY_REQUEST_ERR\s0 (3)

If any node is inserted somewhere it doesn't belong

\s-1WRONG_DOCUMENT_ERR\s0 (4)

If a node is used in a different document than the one that created it (that doesn't support it)

\s-1INVALID_CHARACTER_ERR\s0 (5)

If an invalid character is specified, such as in a name.

\s-1NO_DATA_ALLOWED_ERR\s0 (6)

If data is specified for a node which does not support data

\s-1NO_MODIFICATION_ALLOWED_ERR\s0 (7)

If an attempt is made to modify an object where modifications are not allowed

\s-1NOT_FOUND_ERR\s0 (8)

If an attempt was made to reference a node in a context where it does not exist

\s-1NOT_SUPPORTED_ERR\s0 (9)

If the implementation does not support the type of object requested

\s-1INUSE_ATTRIBUTE_ERR\s0 (10)

If an attempt is made to add an attribute that is already inuse elsewhere

\s-1INVALID_STATE_ERR\s0 (11)

If an attempt is made to use an object that is not, or is no longer, usable

\s-1SYNTAX_ERR\s0 (12)

If an invalid or illegal string is specified

\s-1INVALID_MODIFICATION_ERR\s0 (13)

If an attempt is made to modify the type of the underlying object

\s-1NAMESPACE_ERR\s0 (14)

If an attempt is made to create or change an object in a way which is incorrect with regard to namespaces

\s-1INVALID_ACCESS_ERR\s0 (15)

If a parameter or an operation is not supported by the underlying object

RELATED TO CSS::DOM::Exception…

\s-1CSS::DOM\s0, HTML::DOM::Exception