?? noencoderexception.java
字號:
/**
*
* <p>Title: Smgp協議TLV結構解析</p>
* <p>Description:無編碼異常處理</p>
* <p>Copyright: Copyright (c) 2007</p>
* <p>Company: 福富軟件</p>
* @author chenxin
* @version 1.0 $Date 2007-07-03
*/
package ffcs.lbp.le.message.tlv;
/**
* No encoder found for a Java type. An attempt was made to define a new tag
* with a value type that the API does not have a known encoder for. The
* application should define a new encoder and define the tag passing that
* encoder to the
* {@link ie.omk.smpp.message.tlv.Tag#defineTag(int, java.lang.Class, ie.omk.smpp.message.tlv.Encoder, int)}
* method.
*
* @author Oran Kelly
* @version $Id: NoEncoderException.java 267 2006-03-09 16:37:31Z orank $
*/
public class NoEncoderException extends RuntimeException {
static final long serialVersionUID = 6441311177365899332L;
private final Class type;
/**
* Create a new NoEncoderException.
*
* @param type
* The Java type that no encoder was found for.
*/
public NoEncoderException(Class type) {
this.type = type;
}
/**
* Create a new NoEncoderException.
*
* @param type
* The Java type that no encoder was found for.
* @param msg
* The exception message.
*/
public NoEncoderException(Class type, String msg) {
super(msg);
this.type = type;
}
public Class getType() {
return type;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -