org.springframework.osgi
Class OsgiException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.osgi.OsgiException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
OsgiWarDeploymentException, ServiceException

public class OsgiException
extends RuntimeException

Root of the Spring DM exception hierarchy.

Author:
Costin Leau
See Also:
Serialized Form

Constructor Summary
OsgiException()
          Default constructor using no specified cause or detailed message.
OsgiException(String message)
          Constructs a new OsgiException instance.
OsgiException(String message, Throwable cause)
          Constructs a new OsgiException instance.
OsgiException(Throwable cause)
          Constructs a new OsgiException instance.
 
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

OsgiException

public OsgiException()
Default constructor using no specified cause or detailed message.


OsgiException

public OsgiException(String message,
                     Throwable cause)
Constructs a new OsgiException instance.

Parameters:
message - detailed message
cause - exception cause

OsgiException

public OsgiException(String message)
Constructs a new OsgiException instance.

Parameters:
message - detailed message

OsgiException

public OsgiException(Throwable cause)
Constructs a new OsgiException instance.

Parameters:
cause - exception cause


Copyright © 2006-2009 Spring Framework. All Rights Reserved.