org.jickr
Class FlickrRuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.jickr.FlickrRuntimeException
All Implemented Interfaces:
java.io.Serializable

public class FlickrRuntimeException
extends java.lang.RuntimeException

Generic Runtime exception thrown by Jickr. As with all Runtime exceptions, the expecation is that if you see this error, then you probably did something wrong. FlickrException is thrown instead if the error was outside of your control.

See Also:
FlickrException, Serialized Form

Constructor Summary
FlickrRuntimeException(java.lang.String msg)
          Creates a new instance of FlickrRuntimeException without detail message.
FlickrRuntimeException(java.lang.String msg, java.lang.Throwable cause)
          Constructs an instance of FlickrRuntimeException with the specified detail message.
 
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

FlickrRuntimeException

public FlickrRuntimeException(java.lang.String msg)
Creates a new instance of FlickrRuntimeException without detail message.


FlickrRuntimeException

public FlickrRuntimeException(java.lang.String msg,
                              java.lang.Throwable cause)
Constructs an instance of FlickrRuntimeException with the specified detail message.

Parameters:
msg - the detail message.