- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- net.automatalib.incremental.ConflictException
-
- All Implemented Interfaces:
Serializable
public class ConflictException extends IllegalArgumentException
Conflict exception. Thrown when a data point to be inserted conflicts with definitive information already existing.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConflictException()
Creates an exception with no specific error message.ConflictException(String s)
Creates an exception with a given error message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ConflictException
public ConflictException()
Creates an exception with no specific error message.- See Also:
IllegalArgumentException()
-
ConflictException
public ConflictException(String s)
Creates an exception with a given error message.- Parameters:
s
- the error message- See Also:
IllegalArgumentException(String)
-
-