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

com.github.uscexp.grappa.extension.exception.AstInterpreterException Maven / Gradle / Ivy

There is a newer version: 0.4.0-Beta
Show newest version
/*
 * Copyright (C) 2014 by haui - all rights reserved
 */
package com.github.uscexp.grappa.extension.exception;

/**
 * @author haui
 *
 */
public class AstInterpreterException extends Exception {

	private static final long serialVersionUID = -330014265655391953L;

	public AstInterpreterException(String message, Throwable cause) {
		super(message, cause);
	}

	public AstInterpreterException(String message) {
		super(message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy