Class SzNotFoundException

All Implemented Interfaces:
Serializable

public class SzNotFoundException extends SzBadInputException
Extends SzBadInputException to define an exceptional condition where the provided bad input to a Senzing operation is an identifier that could not be used to successfully locate required data for that operation.
See Also:
  • Constructor Details

    • SzNotFoundException

      public SzNotFoundException()
      Default constructor.
    • SzNotFoundException

      public SzNotFoundException(String message)
      Constructs with a message explaing the reason for the exception.
      Parameters:
      message - The message explaining the reason for the exception.
    • SzNotFoundException

      public SzNotFoundException(int errorCode, String message)
      Constructs with a message explaing the reason for the exception.
      Parameters:
      errorCode - The underlying senzing error code.
      message - The message explaining the reason for the exception.
    • SzNotFoundException

      public SzNotFoundException(Throwable cause)
      Constructs with the Throwable that is the underlying cause for the exception.
      Parameters:
      cause - The message The message explaining the reason for the exception.
    • SzNotFoundException

      public SzNotFoundException(String message, Throwable cause)
      Constructs with a message explaing the reason for the exception and the Throwable that is the underlying cause for the exception.
      Parameters:
      message - The message explaining the reason for the exception.
      cause - The message The message explaining the reason for the exception.
    • SzNotFoundException

      public SzNotFoundException(int errorCode, String message, Throwable cause)
      Constructs with the Senzing error code, the message explaing the reason for the exception and the Throwable that is the underlying cause for the exception.
      Parameters:
      errorCode - The underlying senzing error code.
      message - The message explaining the reason for the exception.
      cause - The message The message explaining the reason for the exception.