/* --------------------------------------------------------- * * __________ D E L T A S C R I P T * * (_________() * * / === / - A fast, dynamic scripting language * * | == | - Version 4.13.11.0 * * / === / - Developed by Adam R. Nelson * * | = = | - 2011-2013 * * / === / - Distributed under GNU LGPL v3 * * (________() - http://github.com/ar-nelson/deltascript * * * * --------------------------------------------------------- */ package com.sector91.delta.script.parser; public class DScriptLexerException extends Exception { private static final long serialVersionUID = 1L; DScriptLexerException(String message) {super(message);} DScriptLexerException(Throwable cause) {super(cause);} DScriptLexerException(String message, Throwable cause) {super(message, cause);} }