Klasse IntakeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.fulcrum.intake.IntakeException
Alle implementierten Schnittstellen:
Serializable
Bekannte direkte Unterklassen:
InvalidMaskException, ValidationException

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

    • IntakeException

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

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

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

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