serviceexception.java
来自「手机业务程序例子」· Java 代码 · 共 33 行
JAVA
33 行
/*
* ServiceException.java
*
* Created on 2002年10月15日, 上午10:03
*/
package mobile.smsservice;
/**
*
* @author hkai
*/
public class ServiceException extends java.lang.Exception
{
/**
* Creates a new instance of <code>ServiceException</code> without detail message.
*/
public ServiceException()
{
}
/**
* Constructs an instance of <code>ServiceException</code> with the specified detail message.
* @param msg the detail message.
*/
public ServiceException(String msg)
{
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?