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

com.devonfw.cobigen.api.exception.InputReaderException Maven / Gradle / Ivy

There is a newer version: 2021.12.006
Show newest version
package com.devonfw.cobigen.api.exception;


/** Exception to indicate that an InputReader encountered a problem while parsing input content. */
public class InputReaderException extends CobiGenRuntimeException {

    /** Generate serial version UID */
    private static final long serialVersionUID = -3460790488241223241L;

    /**
     * Creates a new InputReaderException with the specified message
     * @param message
     *            describing the exception
     */
    public InputReaderException(String message) {
        super(message);
    }

    /**
     * Creates a new InputReaderException with the specified message and the causing {@link Throwable}
     * @param message
     *            describing the exception
     * @param cause
     *            the causing Throwable
     */
    public InputReaderException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy