com.devonfw.cobigen.api.exception.InputReaderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-api Show documentation
Show all versions of core-api Show documentation
A Code-based incremental Generator
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);
}
}