org.apache.fulcrum.intake
Class IntakeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by 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: IntakeException.java 671325 2008-06-24 20:02:14Z tv $
Author:
Quinton McCombs
See Also:
Serialized Form

Constructor Summary
IntakeException()
          Constructs a new IntakeException without specified detail message.
IntakeException(String msg)
          Constructs a new IntakeException with specified detail message.
IntakeException(String msg, Throwable nested)
          Constructs a new IntakeException with specified detail message and nested Throwable.
IntakeException(Throwable nested)
          Constructs a new IntakeException with specified nested Throwable.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.


Copyright © 2005-2009 The Apache Software Foundation. All Rights Reserved.