Finalize specific exceptions

This commit is contained in:
Gabriel Tofvesson 2021-01-28 05:50:49 +01:00
parent 833b27e38c
commit 247d9c53fa

View File

@ -1,6 +1,6 @@
package dev.w1zzrd.asm.exception;
public class DirectiveNotImplementedException extends RuntimeException {
public final class DirectiveNotImplementedException extends RuntimeException {
public DirectiveNotImplementedException(String directiveName) {
super("Operation not implemented: "+directiveName);
}