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

io.avaje.json.JsonEofException Maven / Gradle / Ivy

There is a newer version: 3.0-RC2
Show newest version
package io.avaje.json;

import java.io.IOException;

/**
 * Thrown when we hit EOF unexpectedly.
 */
public class JsonEofException extends JsonIoException {

  static final long serialVersionUID = 1L;

  public JsonEofException(IOException cause) {
    super(cause);
  }

  public JsonEofException(String message, IOException cause) {
    super(message, cause);
  }

  public JsonEofException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy