com.alexkasko.krakatau.KrakatauException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krakatau-lib Show documentation
Show all versions of krakatau-lib Show documentation
Assembler, disassebmler, decompiler and compiler tools library for Java.
package com.alexkasko.krakatau;
/**
* Library-specific exception
*
* @author alexkasko
* Date: 9/29/13
*/
public class KrakatauException extends RuntimeException {
/**
* Constructor
*
* @param message error message
*/
public KrakatauException(String message) {
super(message);
}
/**
* Constructor
*
* @param message error message
* @param cause cause error
*/
public KrakatauException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy