com.jimmoores.quandl.util.QuandlRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quandl-jersey1 Show documentation
Show all versions of quandl-jersey1 Show documentation
Quandl REST API wrapper for Java
The newest version!
package com.jimmoores.quandl.util;
/**
* A runtime exception from the Quandl client.
*/
public class QuandlRuntimeException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Constructor when another exception is being included.
* @param message a message describing the exception, not null
* @param cause the cause of the expection if there is one, not null
*/
public QuandlRuntimeException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* Constructor when exception is not caused by an underlying exception.
* @param message a message describing the exception, not null
*/
public QuandlRuntimeException(final String message) {
super(message);
}
}