8 lines
244 B
Java
8 lines
244 B
Java
package dev.w1zzrd.asm.exception;
|
|
|
|
public class DirectiveNotImplementedException extends RuntimeException {
|
|
public DirectiveNotImplementedException(String directiveName) {
|
|
super("Operation not implemented: "+directiveName);
|
|
}
|
|
}
|