Klasse SourceException

Alle implementierten Schnittstellen:
Serializable

public class SourceException extends GeneratorException
This exception denotes that the source cannot be read.
Siehe auch:
  • Konstruktordetails

    • SourceException

      public SourceException()
      Constructs a SourceException without error message.
      Siehe auch:
    • SourceException

      public SourceException(String message)
      Constructs a SourceException with the given error message.
      Parameter:
      message - the error message
      Siehe auch:
    • SourceException

      public SourceException(Throwable cause)
      Constructs a SourceException which wraps another exception.
      Parameter:
      cause - The root cause of the exception, can be null.
      Siehe auch:
    • SourceException

      public SourceException(String message, Throwable cause)
      Constructs a SourceException which wraps another exception, and which has its own error message.
      Parameter:
      message - The error mesaage.
      cause - The exception to wrap.
      Siehe auch: