Package org.smpp.pdu.tlv

Examples of org.smpp.pdu.tlv.WrongLengthException


   * Throws exception if the <code>length</code> provided isn't between
   * provided <code>min</code> and <code>max</code> inclusive.
   */
  protected static void checkLength(int min, int max, int length) throws WrongLengthException {
    if ((length < min) || (length > max)) {
      throw new WrongLengthException(min, max, length);
    }
  }
View Full Code Here

TOP

Related Classes of org.smpp.pdu.tlv.WrongLengthException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.