⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 invalidnumberofdestinationsexception.java

📁 JSMPP Examples to send and receive sms from java via smpp protocol.
💻 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;
    }
    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -