Top Description Fields Constructors
javax.xml.catalog

public Class CatalogException

extends RuntimeException
Class Inheritance

The exception class handles errors that may happen while processing or using a catalog.
Since
9

Field Summary

Modifier and TypeField and Description
private static final long

Constructor Summary

AccessConstructor and Description
public
CatalogException(String
the detail message
message
)

Constructs a new CatalogException with the specified detail message.

public
CatalogException(String
the detail message (which is saved for later retrieval by the getMessage() method)
message
,
Throwable
the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
cause
)

Constructs a new CatalogException with the specified detail message and cause.

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.lang.RuntimeException.serialVersionUID.

Constructor Detail

CatalogExceptionback to summary
public CatalogException(String message)

Constructs a new CatalogException with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.

Parameters
message:String

the detail message

CatalogExceptionback to summary
public CatalogException(String message, Throwable cause)

Constructs a new CatalogException with the specified detail message and cause.

Parameters
message:String

the detail message (which is saved for later retrieval by the getMessage() method)

cause:Throwable

the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)