1 /*2 * Copyright (C) 2001 Ciaran Treanor <ciaran@codeloop.com>3 *4 * Distributable under GPL license.5 * See terms of license at gnu.org.6 *7 * $Id: RRDException.java,v 1.1 2004/07/22 09:34:10 saxon64 Exp $8 */9 package org.jrobin.core.jrrd;10 11 /**12 * This exception may be throw if an error occurs while operating13 * on an RRD object.14 *15 * @author <a HREF="mailto:ciaran@codeloop.com">Ciaran Treanor</a>16 * @version $Revision: 1.1 $17 */18 public class RRDException extends Exception {19 20 /**21 * Constructs an RRDException with no detail message.22 */23 public RRDException() {24 super();25 }26 27 /**28 * Constructs an RRDException with the specified detail message.29 */30 public RRDException(String message) {31 super(message);32 }33 }34