public class PatternNotFoundException
extends java.lang.RuntimeException
Constructor and Description |
---|
PatternNotFoundException(java.lang.String message)
Constructs a new pattern not found exception with the specified detail message.
|
PatternNotFoundException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new pattern not found exception with the specified detail message and cause.
|
PatternNotFoundException(java.lang.Throwable cause)
Constructs a new pattern not found exception with the specified cause and a
detail message of
(cause==null ? null : cause.toString()) |
public PatternNotFoundException(java.lang.String message)
message
- the detail messagepublic PatternNotFoundException(java.lang.String message, java.lang.Throwable cause)
message
- the detail messagecause
- the cause, may be null (indicating nonexistent or unknown cause)public PatternNotFoundException(java.lang.Throwable cause)
(cause==null ? null : cause.toString())
cause
- the cause, may be null (indicating nonexistent or unknown cause)