All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tigerbrokers.stock.openapi.client.util.codec.EncoderException Maven / Gradle / Ivy

package com.tigerbrokers.stock.openapi.client.util.codec;

/**
 * Thrown when there is a failure condition during the encoding process.  This
 * exception is thrown when an Encoder encounters a encoding specific exception
 * such as invalid data, inability to calculate a checksum, characters outside of the
 * expected range.
 *
 * @author Apache Software Foundation
 * @version $Id: EncoderException.java,v 1.10 2004/02/29 04:08:31 tobrien Exp $
 */
public class EncoderException extends Exception {

  private static final long serialVersionUID = 639276068312354225L;

  /**
   * Creates a new instance of this exception with an useful message.
   *
   * @param pMessage a useful message relating to the encoder specific error.
   */
  public EncoderException(String pMessage) {
    super(pMessage);
  }
}  





© 2015 - 2025 Weber Informatics LLC | Privacy Policy