org.nuiton.j2r.RException Maven / Gradle / Ivy
/* *##% Nuiton Java-2-R library
* Copyright (C) 2006 - 2009 CodeLutin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* . ##%*/
/* *
* RException.java
*
* Created: 22 aout 06
*
* @author Arnaud Thimel
*/
package org.nuiton.j2r;
/**
* Exception thrown when an error occur during the communication with R
* (whatever the communication mode is).
*/
public class RException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Exception constructor.
*/
public RException() {
super();
}
/**
* Exception constructor
* @param message text describing the exception.
*/
public RException(String message) {
super(message);
}
/**
* Exception constructor.
* @param cause the Throwable instance that throwed this exception.
*/
public RException(Throwable cause) {
super(cause);
}
/**
* Exception constructor.
* @param message text describing the exception.
* @param cause the Throwable instance that throwed this exception.
*/
public RException(String message, Throwable cause) {
super(message, cause);
}
} //RException