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 Details

    • SpreadsheetException

      public SpreadsheetException(String message)
      Construct a SpreadsheetException with the specified message
      Parameters:
      message - The detail message.
    • SpreadsheetException

      public SpreadsheetException(Throwable cause)
      Construct a SpreadsheetException with the specified cause
      Parameters:
      cause - The cause of the exception.
    • SpreadsheetException

      public SpreadsheetException(String message, Throwable cause)
      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.