Package org.spdx.core
Class RuntimeSpdxException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.spdx.core.RuntimeSpdxException
-
- All Implemented Interfaces:
Serializable
public class RuntimeSpdxException extends RuntimeException
Runtime Exception wrapper for SPDX exceptions (cause field)- Author:
- Gary O'Neall
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RuntimeSpdxException(String message)
RuntimeSpdxException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
RuntimeSpdxException(String message, InvalidSPDXAnalysisException cause)
RuntimeSpdxException(InvalidSPDXAnalysisException cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RuntimeSpdxException
public RuntimeSpdxException(String message)
- Parameters:
message
- exception message
-
RuntimeSpdxException
public RuntimeSpdxException(InvalidSPDXAnalysisException cause)
- Parameters:
cause
- SPDX analysis cause
-
RuntimeSpdxException
public RuntimeSpdxException(String message, InvalidSPDXAnalysisException cause)
- Parameters:
message
- exception messagecause
- SPDX analysis cause
-
-