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

walkman.HandlerException Maven / Gradle / Ivy

package walkman;

/**
 * Thrown to indicates an exception with some part of the handling chain.
 */
abstract class HandlerException extends RuntimeException {
  HandlerException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy