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

morfologik.stemming.UnmappableInputException Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
package morfologik.stemming;

import java.nio.charset.CharacterCodingException;

/**
 * Thrown when some input cannot be mapped using the declared charset (bytes
 * to characters or the other way around).
 */
@SuppressWarnings("serial")
public final class UnmappableInputException extends Exception {
  UnmappableInputException(String message, CharacterCodingException cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy