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

org.basex.io.serial.InputException Maven / Gradle / Ivy

There is a newer version: 11.6
Show newest version
package org.basex.io.serial;

import java.io.*;

/**
 * This class indicates exceptions during input stream processing.
 *
 * @author BaseX Team 2005-12, BSD License
 * @author Christian Gruen
 */
public class InputException extends IOException {
  /**
   * Constructor.
   */
  public InputException() {
    this("Invalid input, or wrong encoding specified");
  }

  /**
   * Constructor.
   * @param msg error message
   */
  public InputException(final String msg) {
    super(msg);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy