?? invalidnumberofdestinationsexception.java
字號:
package org.jsmpp;
/**
* This exception should be thrown if there is an invalid number of destination
* address used by submit_multi.
*
* @author uudashr
*
*/
public class InvalidNumberOfDestinationsException extends PDUException {
private static final long serialVersionUID = -1515128166927438310L;
private int actualLength;
/**
* Default constructor.
*
* @param message is the message.
* @param actualLength the actual length.
*/
public InvalidNumberOfDestinationsException(String message, int actualLength) {
super(message);
this.actualLength = actualLength;
}
public int getActualLength() {
return actualLength;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -