Package org.ssclab.pl.milp
Class LPException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ssclab.pl.milp.LPException
-
- All Implemented Interfaces:
Serializable
public class LPException extends Exception
This class represents an exception specific to Linear Programming (LP) operations. It extends the Exception class.- Author:
- Stefano Scarioli
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LPException(String message)
Constructs an LPException with the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LPException
public LPException(String message)
Constructs an LPException with the specified detail message.- Parameters:
message
- the detail message (which is saved for later retrieval by the getMessage() method)
-
-