public class MacroNotFoundException extends Exception
| Constructor and Description |
|---|
MacroNotFoundException(String message)
Construct a new MacroNotFoundException with the specified detail message.
|
MacroNotFoundException(String message,
Throwable cause)
Construct a new MacroNotFoundException with the specified
detail message and cause.
|
MacroNotFoundException(Throwable cause)
Constructs a new MacroNotFoundException with the specified cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic MacroNotFoundException(String message)
message - The detailed message.
This can later be retrieved by the Throwable.getMessage() method.public MacroNotFoundException(Throwable cause)
cause - the cause. This can be retrieved later by the
Throwable.getCause() method. (A null value is permitted, and indicates
that the cause is nonexistent or unknown.)public MacroNotFoundException(String message, Throwable cause)
message - The detailed message.
This can later be retrieved by the Throwable.getMessage() method.cause - the cause. This can be retrieved later by the
Throwable.getCause() method. (A null value is permitted, and indicates
that the cause is nonexistent or unknown.)Copyright © 2005-2013 The Apache Software Foundation. All Rights Reserved.