Package com.sas.lsaf.content.utilization
Class ResourceUtilizationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sas.lsaf.core.AbstractCheckedException
com.sas.lsaf.content.utilization.ResourceUtilizationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ResourceUtilizationPathNotFoundException
Root of the hierarchy of all checked resource utilization exceptions within the application. Provides a way of
wrapping checked
Exceptions with a root cause.
Abstract because this exception should not be constructed directly, rather, a more detailed subclass should be
constructed and thrown.- Since:
- 2.5
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionResourceUtilizationException(String message) Constructs aResourceUtilizationExceptionwith the specified message. -
Method Summary
Methods inherited from class com.sas.lsaf.core.AbstractCheckedException
getMessage, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResourceUtilizationException
Constructs aResourceUtilizationExceptionwith the specified message.- Parameters:
message- The detailed message.
-