📄 configurationexception.java
字号:
/* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
* This code is licensed under the GPL 2.0 license, availible at the root
* application directory.
*/
package org.vfny.geoserver.global;
/**
* Thrown when there is an error in configuration. Added a third constructor
* for ease of exception type chaining.
*
* @author Chris Holmes
* @author dzwiers
* @version $Id: ConfigurationException.java 6326 2007-03-15 18:36:40Z jdeolive $
*/
public class ConfigurationException extends Exception {
/**
*
*/
private static final long serialVersionUID = 6333673036778693749L;
/**
* Constructs a new instance of ConfigurationException
*
* @param msg A message explaining the exception
*/
public ConfigurationException(String msg) {
super(msg);
}
/**
* Constructs a new instance of ConfigurationException
*
* @param msg A message explaining the exception
* @param exp the throwable object which caused this exception
*/
public ConfigurationException(String msg, Throwable exp) {
super(msg, exp);
}
/**
* Constructs a new instance of ConfigurationException
*
* @param exp the throwable object which caused this exception
*/
public ConfigurationException(Throwable exp) {
super(exp);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -