Glowman554 / BetterNudel

Exception classes must be named appropriately JAVA-W1000
Anti-pattern
Minor
2 years ago2 years old
ExecutionEngineError is an Exception but is not named appropriately
113        }
114    }
115
116    public static class ExecutionEngineError extends Exception {117        public ExecutionEngineError(String message) {118            super(message);119        }120    }121}