JavaTXCompilerInJavaTX/javatx-src/main/java/de/dhbwstuttgart/bytecode/CodeGenException.java

8 lines
167 B
Java
Raw Normal View History

2024-02-02 12:06:37 +00:00
package de.dhbwstuttgart.bytecode;
public class CodeGenException extends RuntimeException {
public CodeGenException(String cause) {
super(cause);
}
}