Klasse SimpleDocletException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jdrupes.mdoclet.internal.doclets.toolkit.DocletException
org.jdrupes.mdoclet.internal.doclets.toolkit.util.SimpleDocletException
- Alle implementierten Schnittstellen:
Serializable
An exception with a user-friendly detail message.
- Siehe auch:
-
Konstruktorübersicht
KonstruktorBeschreibungSimpleDocletException
(String message) Creates an exception with a user-friendly detail message.SimpleDocletException
(String message, Throwable cause) Creates an exception with a user-friendly 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
-
SimpleDocletException
Creates an exception with a user-friendly detail message.- Parameter:
message
- a localized detail message, suitable for direct presentation to the end user
-
SimpleDocletException
Creates an exception with a user-friendly detail message, and underlying cause.The cause may be used for debugging but in normal use, should not be presented to the user.
- Parameter:
message
- a localized detail message, suitable for direct presentation to the end usercause
- the underlying cause for the exception
-