Class EncodingFailedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
i5.las2peer.persistency.EncodingFailedException
All Implemented Interfaces:
Serializable

public class EncodingFailedException extends Exception
Exception thrown if an encoding has failed for some reason.
See Also:
  • Constructor Details

    • EncodingFailedException

      public EncodingFailedException(String message)
      This constructor sets only the message for this exception and leaves the cause to null.
      Parameters:
      message - A message that describes the error.
    • EncodingFailedException

      public EncodingFailedException(Throwable cause)
      This constructor leaves the message null and sets only the cause for this exception. This is usually used to wrap other exception types and unify exception handling for the developer.
      Parameters:
      cause - An other exception that caused this one.
    • EncodingFailedException

      public EncodingFailedException(String message, Throwable cause)
      This constructor allows to set message and cause for this exception.
      Parameters:
      message - A message that describes the error.
      cause - An other exception that caused this one.