Klasse DocletException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jdrupes.mdoclet.internal.doclets.toolkit.DocletException
- Alle implementierten Schnittstellen:
Serializable
- Bekannte direkte Unterklassen:
DocFileIOException
,InternalException
,ResourceIOException
,SimpleDocletException
Supertype for all checked doclet exceptions.
- Siehe auch:
-
Konstruktorübersicht
ModifiziererKonstruktorBeschreibungprotected
DocletException
(String message) Creates a DocletException with a given detail message.protected
DocletException
(String message, Throwable cause) Creates a DocletException with a given detail message and underlying cause. -
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
DocletException
Creates a DocletException with a given detail message.The message may or may not be intended for presentation to the end user.
- Parameter:
message
- the detail message.
-
DocletException
Creates a DocletException with a given detail message and underlying cause.The message may or may not be intended for presentation to the end user.
- Parameter:
message
- the detail message.cause
- the underlying cause
-