com.sap.caf.rt.exception

Class CAFUnsupportedOperationException

java.lang.Object
  extended by BaseRuntimeException
      extended by com.sap.caf.rt.exception.CAFBaseRuntimeException
          extended by com.sap.caf.rt.exception.CAFUnsupportedOperationException

public class CAFUnsupportedOperationException
extends CAFBaseRuntimeException

This exception is thrown when a method which is not implemented has been called.


Constructor Summary
CAFUnsupportedOperationException()
          Deprecated. Use CAFUnsupportedOperationException(Location) instead.
CAFUnsupportedOperationException(BaseExceptionInfo baseExcInfo, boolean isRealCause)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Category category, int severity, Location location, ResourceAccessor ra, String key, Object[] args, Throwable cause)
          Deprecated.  
CAFUnsupportedOperationException(Category category, int severity, Location location, ResourceAccessor ra, String key, Object[] args, Throwable cause, boolean isRealCause)
          Deprecated.  
CAFUnsupportedOperationException(Location location)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, ResourceAccessor ra, String key)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, ResourceAccessor ra, String key, Object[] args)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, ResourceAccessor ra, String key, Object[] args, Throwable cause)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, ResourceAccessor ra, String key, Object[] args, Throwable cause, boolean isRealCause)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, ResourceAccessor ra, String key, Throwable cause)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, ResourceAccessor ra, String key, Throwable cause, boolean isRealCause)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, Throwable cause)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(Location location, Throwable cause, boolean isRealCause)
          Constructs a new CAFUnsupportedOperationException.
CAFUnsupportedOperationException(ResourceAccessor ra, String key)
          Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String) instead.
CAFUnsupportedOperationException(ResourceAccessor ra, String key, Object[] args)
          Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Object[]) instead.
CAFUnsupportedOperationException(ResourceAccessor ra, String key, Object[] args, Throwable cause)
          Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Object[], Throwable) instead.
CAFUnsupportedOperationException(ResourceAccessor ra, String key, Object[] args, Throwable cause, boolean isRealCause)
          Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Object[], Throwable, boolean) instead.
CAFUnsupportedOperationException(ResourceAccessor ra, String key, Throwable cause)
          Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Throwable) instead.
CAFUnsupportedOperationException(ResourceAccessor ra, String key, Throwable cause, boolean isRealCause)
          Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Throwable, boolean) instead.
CAFUnsupportedOperationException(String key, Object[] args)
          Deprecated. Use CAFUnsupportedOperationException#CAFUnsupportedOperationException(Location, String, Object[]) instead.
CAFUnsupportedOperationException(String key, Object[] args, Throwable cause)
          Deprecated. Use CAFUnsupportedOperationException#CAFUnsupportedOperationException(Location, String, Object[], Throwable) instead.
CAFUnsupportedOperationException(String key, Object[] args, Throwable cause, boolean isRealCause)
          Deprecated. Use CAFUnsupportedOperationException#CAFUnsupportedOperationException(Location, String, Object[], Throwable, boolean) instead.
 
Method Summary
 
Methods inherited from class com.sap.caf.rt.exception.CAFBaseRuntimeException
getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getMessage, getRealCause
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location

CAFUnsupportedOperationException

public CAFUnsupportedOperationException()
Deprecated. Use CAFUnsupportedOperationException(Location) instead.

Constructs a new CAFUnsupportedOperationException.


CAFUnsupportedOperationException

public CAFUnsupportedOperationException(BaseExceptionInfo baseExcInfo,
                                        boolean isRealCause)
Constructs a new CAFUnsupportedOperationException.

Parameters:
baseExcInfo - information about the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        Throwable cause)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
cause - the throwable which caused this exception

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        Throwable cause,
                                        boolean isRealCause)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
cause - the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        ResourceAccessor ra,
                                        String key)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(ResourceAccessor ra,
                                        String key)
Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String) instead.

Constructs a new CAFUnsupportedOperationException.

Parameters:
ra - resource accessor
key - the key of the message in the resource bundle

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        ResourceAccessor ra,
                                        String key,
                                        Throwable cause)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle
cause - the throwable which caused this exception

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(ResourceAccessor ra,
                                        String key,
                                        Throwable cause)
Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Throwable) instead.

Constructs a new CAFUnsupportedOperationException.

Parameters:
ra - resource accessor
key - the key of the message in the resource bundle
cause - the throwable which caused this exception

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        ResourceAccessor ra,
                                        String key,
                                        Throwable cause,
                                        boolean isRealCause)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle
cause - the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(ResourceAccessor ra,
                                        String key,
                                        Throwable cause,
                                        boolean isRealCause)
Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Throwable, boolean) instead.

Constructs a new CAFUnsupportedOperationException.

Parameters:
ra - resource accessor
key - the key of the message in the resource bundle
cause - the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        ResourceAccessor ra,
                                        String key,
                                        Object[] args)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(ResourceAccessor ra,
                                        String key,
                                        Object[] args)
Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Object[]) instead.

Constructs a new CAFUnsupportedOperationException.

Parameters:
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        ResourceAccessor ra,
                                        String key,
                                        Object[] args,
                                        Throwable cause)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(ResourceAccessor ra,
                                        String key,
                                        Object[] args,
                                        Throwable cause)
Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Object[], Throwable) instead.

Constructs a new CAFUnsupportedOperationException.

Parameters:
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Location location,
                                        ResourceAccessor ra,
                                        String key,
                                        Object[] args,
                                        Throwable cause,
                                        boolean isRealCause)
Constructs a new CAFUnsupportedOperationException.

Parameters:
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(ResourceAccessor ra,
                                        String key,
                                        Object[] args,
                                        Throwable cause,
                                        boolean isRealCause)
Deprecated. Use CAFUnsupportedOperationException(Location, ResourceAccessor, String, Object[], Throwable, boolean) instead.

Constructs a new CAFUnsupportedOperationException.

Parameters:
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Category category,
                                        int severity,
                                        Location location,
                                        ResourceAccessor ra,
                                        String key,
                                        Object[] args,
                                        Throwable cause)
Deprecated. 

Constructs a new CAFUnsupportedOperationException.

Parameters:
category - logging category
severity - logging severity
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(Category category,
                                        int severity,
                                        Location location,
                                        ResourceAccessor ra,
                                        String key,
                                        Object[] args,
                                        Throwable cause,
                                        boolean isRealCause)
Deprecated. 

Constructs a new CAFUnsupportedOperationException.

Parameters:
category - logging category
severity - logging severity
location - logging location
ra - resource accessor
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(String key,
                                        Object[] args)
Deprecated. Use CAFUnsupportedOperationException#CAFUnsupportedOperationException(Location, String, Object[]) instead.

Constructs a new CAFUnsupportedOperationException with the default CAF resource accessor.

Parameters:
key - the key of the message in the resource bundle
args - arguments for the message

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(String key,
                                        Object[] args,
                                        Throwable cause)
Deprecated. Use CAFUnsupportedOperationException#CAFUnsupportedOperationException(Location, String, Object[], Throwable) instead.

Constructs a new CAFUnsupportedOperationException with the default CAF resource accessor.

Parameters:
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception

CAFUnsupportedOperationException

public CAFUnsupportedOperationException(String key,
                                        Object[] args,
                                        Throwable cause,
                                        boolean isRealCause)
Deprecated. Use CAFUnsupportedOperationException#CAFUnsupportedOperationException(Location, String, Object[], Throwable, boolean) instead.

Constructs a new CAFUnsupportedOperationException with the default CAF resource accessor.

Parameters:
key - the key of the message in the resource bundle
args - arguments for the message
cause - the throwable which caused this exception
isRealCause - true if the currently constructed exception is the real exception and not just a wrapper, false if cause is the real one


Copyright 2009 SAP AG Complete Copyright Notice