Package ftbsc.lll.exceptions
Class PatternNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ftbsc.lll.exceptions.PatternNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class PatternNotFoundException extends java.lang.RuntimeException
Thrown when failing to find a pattern.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor 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())
-
-
-
Constructor Detail
-
PatternNotFoundException
public PatternNotFoundException(java.lang.String message)
Constructs a new pattern not found exception with the specified detail message.- Parameters:
message
- the detail message
-
PatternNotFoundException
public PatternNotFoundException(java.lang.String message, java.lang.Throwable cause)
Constructs a new pattern not found exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause, may be null (indicating nonexistent or unknown cause)
-
PatternNotFoundException
public 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())
- Parameters:
cause
- the cause, may be null (indicating nonexistent or unknown cause)
-
-