📄 rrdexception.java
字号:
/*
* Copyright (C) 2001 Ciaran Treanor <ciaran@codeloop.com>
*
* Distributable under GPL license.
* See terms of license at gnu.org.
*
* $Id: RRDException.java,v 1.1 2006/04/25 08:09:28 sasam Exp $
*/
package org.jrobin.core.jrrd;
/**
* This exception may be throw if an error occurs while operating
* on an RRD object.
*
* @author <a href="mailto:ciaran@codeloop.com">Ciaran Treanor</a>
* @version $Revision: 1.1 $
*/
public class RRDException extends Exception {
/**
* Constructs an RRDException with no detail message.
*/
public RRDException() {
super();
}
/**
* Constructs an RRDException with the specified detail message.
*/
public RRDException(String message) {
super(message);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -