com.netmera.mobile
Class NetmeraRuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.netmera.mobile.NetmeraRuntimeException
All Implemented Interfaces:
java.io.Serializable

public class NetmeraRuntimeException
extends java.lang.RuntimeException

NetmeraRuntimeException is the class of those exceptions that can be thrown during the normal operation of the Netmera. A method is not required to declare in its throws clause any subclasses of RuntimeException that might be thrown during the execution of the method but not caught.

See Also:
Serialized Form

Constructor Summary
NetmeraRuntimeException(java.lang.String message)
           
NetmeraRuntimeException(java.lang.String message, java.lang.Throwable cause)
           
NetmeraRuntimeException(java.lang.Throwable cause)
           
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NetmeraRuntimeException

public NetmeraRuntimeException(java.lang.String message,
                               java.lang.Throwable cause)
Parameters:
message - exception message
cause - The throwable instance that caused to the exception.

NetmeraRuntimeException

public NetmeraRuntimeException(java.lang.String message)
Parameters:
message - exception message

NetmeraRuntimeException

public NetmeraRuntimeException(java.lang.Throwable cause)
Parameters:
cause - The throwable instance that caused to the exception.