
com.mitchellbosecke.pebble.error.ParserException Maven / Gradle / Ivy
/*******************************************************************************
* This file is part of Pebble.
*
* Copyright (c) 2014 by Mitchell Bösecke
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
******************************************************************************/
package com.mitchellbosecke.pebble.error;
public class ParserException extends PebbleException {
/**
* Parser exception
*
* @param message Message to display
* @param lineNumber Line number of where the exception occurred
* @param filename Filename of the file in which the exception occurred
*/
public ParserException(Throwable cause, String message, int lineNumber, String filename) {
super(cause, message, lineNumber, filename);
}
public ParserException(Throwable cause, String message) {
super(cause, message);
}
/**
*
*/
private static final long serialVersionUID = -3712498518512126529L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy