001 /*
002 * Copyright (C) 2001 Ciaran Treanor <ciaran@codeloop.com>
003 *
004 * Distributable under GPL license.
005 * See terms of license at gnu.org.
006 *
007 * $Id: RRDException.java,v 1.3 2007/08/02 21:09:04 rangerrick Exp $
008 */
009 package org.jrobin.core.jrrd;
010
011 /**
012 * This exception may be throw if an error occurs while operating
013 * on an RRD object.
014 *
015 * @author <a href="mailto:ciaran@codeloop.com">Ciaran Treanor</a>
016 * @version $Revision: 1.3 $
017 */
018 public class RRDException extends Exception {
019 private static final long serialVersionUID = 1L;
020
021 /**
022 * Constructs an RRDException with no detail message.
023 */
024 public RRDException() {
025 super();
026 }
027
028 /**
029 * Constructs an RRDException with the specified detail message.
030 */
031 public RRDException(String message) {
032 super(message);
033 }
034 }