incorrectrequestformatexception.java
来自「RAFrame.基于SEP的资源管理器院码。」· Java 代码 · 共 30 行
JAVA
30 行
/* * Project: RAFrameRA Resource Adaptor Framework - An example Resource Adaptor * for Mobicents - the open source JAIN SLEE implementation. * See www.mobicents.org for more detailed information on Mobicents. * * File: IncorrectRequestFormatException.java * Author: Michael Maretzke * License: Distributable under LGPL license - see terms of license at gnu.org * Created: 3rd August 2005, 11:21 * Version: 1.0 */package com.maretzke.raframe.message;/** * IncorrectRequestFormatException is thrown by * com.maretzke.raframe.message.MessageParser if the information to parse does * not follow the defined rules of a message.<br> * * @author Michael Maretzke */public class IncorrectRequestFormatException extends Exception { public IncorrectRequestFormatException() { } public IncorrectRequestFormatException(String reason) { super(reason); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?