Klasse IntakeError

java.lang.Object
java.lang.Throwable
java.lang.Error
org.apache.fulcrum.intake.IntakeError
Alle implementierten Schnittstellen:
Serializable

public class IntakeError extends Error
Base exception thrown by the Intake service.
Version:
$Id$
Autor:
Quinton McCombs
Siehe auch:
  • Konstruktordetails

    • IntakeError

      public IntakeError()
      Constructs a new IntakeError without specified detail message.
    • IntakeError

      public IntakeError(String msg)
      Constructs a new IntakeError with specified detail message.
      Parameter:
      msg - The error message.
    • IntakeError

      public IntakeError(Throwable nested)
      Constructs a new IntakeError with specified nested Throwable.
      Parameter:
      nested - The exception or error that caused this exception to be thrown.
    • IntakeError

      public IntakeError(String msg, Throwable nested)
      Constructs a new IntakeError with specified detail message and nested Throwable.
      Parameter:
      msg - The error message.
      nested - The exception or error that caused this exception to be thrown.