Package com.enragedginger.stephenerialization

Examples of com.enragedginger.stephenerialization.StephenerializationException


   */
  public void writeChar(char value) {
    try {
      stream.writeChar(value);
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here


   */
  public void writeBoolean(boolean value) {
    try {
      stream.writeBoolean(value);
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public void writeObject(Object value) {
    try {
      stream.writeObject(value);
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public byte readByte() {
    try {
      return stream.readByte();
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public short readShort() {
    try {
      return stream.readShort();
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public int readInt() {
    try {
      return stream.readInt();
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public long readLong() {
    try {
      return stream.readLong();
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public float readFloat() {
    try {
      return stream.readFloat();
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public double readDouble() {
    try {
      return stream.readDouble();
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

   */
  public boolean readBoolean() {
    try {
      return stream.readBoolean();
    } catch (Exception e) {
      throw new StephenerializationException(BASIC_MSG, e);
    }
  }
View Full Code Here

TOP

Related Classes of com.enragedginger.stephenerialization.StephenerializationException

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.