Package org.spdx.spreadsheetstore
Class SpreadsheetException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.spdx.core.InvalidSPDXAnalysisException
org.spdx.spreadsheetstore.SpreadsheetException
- All Implemented Interfaces:
Serializable
public class SpreadsheetException
extends org.spdx.core.InvalidSPDXAnalysisException
Exceptions related to SPDX Spreadsheets
- Author:
- Gary O'Neall
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSpreadsheetException
(String message) Construct a SpreadsheetException with the specified messageSpreadsheetException
(String message, Throwable cause) Construct a SpreadsheetException with the specified message and causeSpreadsheetException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Construct a SpreadsheetException with the specified detailsSpreadsheetException
(Throwable cause) Construct a SpreadsheetException with the specified cause -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SpreadsheetException
Construct a SpreadsheetException with the specified message- Parameters:
message
- The detail message.
-
SpreadsheetException
Construct a SpreadsheetException with the specified cause- Parameters:
cause
- The cause of the exception.
-
SpreadsheetException
Construct a SpreadsheetException with the specified message and cause- Parameters:
message
- The detail message.cause
- The cause of the exception.
-
SpreadsheetException
public SpreadsheetException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Construct a SpreadsheetException with the specified details- Parameters:
message
- The detail message.cause
- The cause of the exception.enableSuppression
- Whether suppression is enabled or disabled.writableStackTrace
- Whether the stack trace should be writable.
-