Class IntakeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.fulcrum.intake.IntakeException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidMaskException, ValidationException

public class IntakeException extends Exception
Base exception thrown by the Intake service.
Version:
$Id$
Author:
Quinton McCombs
See Also:
  • Constructor Details

    • IntakeException

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

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

      public IntakeException(Throwable nested)
      Constructs a new IntakeException with specified nested Throwable.
      Parameters:
      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.
      Parameters:
      msg - The error message.
      nested - The exception or error that caused this exception to be thrown.