com.fatwire.services.exception
Class ServiceException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.fatwire.services.exception.ServiceException
All Implemented Interfaces:
java.io.Serializable

public class ServiceException
extends java.lang.Exception

Checked exception expected to be handled by service clients.

All services must wrap checked exceptions thrown from lower layers with this exception.

See Also:
Serialized Form

Constructor Summary
ServiceException()
          Calls Exception.Exception()
ServiceException(java.lang.String message)
          Calls Exception.Exception(String)
ServiceException(java.lang.String message, java.lang.Throwable cause)
          Calls Exception.Exception(String, Throwable)
ServiceException(java.lang.Throwable cause)
          Calls Exception.Exception(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

ServiceException

public ServiceException()
Calls Exception.Exception()


ServiceException

public ServiceException(java.lang.Throwable cause)
Calls Exception.Exception(Throwable)


ServiceException

public ServiceException(java.lang.String message)
Calls Exception.Exception(String)


ServiceException

public ServiceException(java.lang.String message,
                        java.lang.Throwable cause)
Calls Exception.Exception(String, Throwable)



Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.