| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.w3c.css.sac.CSSException
All known Subclasses: org.w3c.css.sac.CSSParseException,
CSSException | public class CSSException extends RuntimeException (Code) | | version: $Revision$ author: Philippe Le Hegaret |
Method Summary | |
public short | getCode() returns the error code for this exception. | public Exception | getException() Returns the internal exception if any, null otherwise. | public String | getMessage() Returns the detail message of this throwable object. |
SAC_NOT_SUPPORTED_ERR | public static short SAC_NOT_SUPPORTED_ERR(Code) | | If the operation is not supported
|
SAC_SYNTAX_ERR | public static short SAC_SYNTAX_ERR(Code) | | If an invalid or illegal string is specified
|
SAC_UNSPECIFIED_ERR | public static short SAC_UNSPECIFIED_ERR(Code) | | this error is unspecified.
|
code | protected short code(Code) | | |
CSSException | public CSSException()(Code) | | Creates a new CSSException
|
CSSException | public CSSException(String s)(Code) | | Creates a new CSSException
|
CSSException | public CSSException(Exception e)(Code) | | Creates a new CSSException with an embeded exception.
Parameters: a - the embeded exception. |
CSSException | public CSSException(short code)(Code) | | Creates a new CSSException with a specific code.
Parameters: a - the embeded exception. |
CSSException | public CSSException(short code, String s, Exception e)(Code) | | Creates a new CSSException with an embeded exception and a specified
message.
Parameters: code - the specified code. Parameters: e - the embeded exception. |
getCode | public short getCode()(Code) | | returns the error code for this exception.
|
getException | public Exception getException()(Code) | | Returns the internal exception if any, null otherwise.
|
getMessage | public String getMessage()(Code) | | Returns the detail message of this throwable object.
the detail message of this Throwable, or null if this Throwabledoes not have a detail message. |
|
|
|