org.apache.fulcrum.intake
Class IntakeError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by org.apache.fulcrum.intake.IntakeError
All Implemented Interfaces:
Serializable

public class IntakeError
extends Error

Base exception thrown by the Intake service.

Version:
$Id: IntakeError.java 670328 2008-06-22 09:34:11Z tv $
Author:
Quinton McCombs
See Also:
Serialized Form

Constructor Summary
IntakeError()
          Constructs a new IntakeError without specified detail message.
IntakeError(String msg)
          Constructs a new IntakeError with specified detail message.
IntakeError(String msg, Throwable nested)
          Constructs a new IntakeError with specified detail message and nested Throwable.
IntakeError(Throwable nested)
          Constructs a new IntakeError 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

IntakeError

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


IntakeError

public IntakeError(String msg)
Constructs a new IntakeError with specified detail message.

Parameters:
msg - The error message.

IntakeError

public IntakeError(Throwable nested)
Constructs a new IntakeError with specified nested Throwable.

Parameters:
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.

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.