A claim plugin based on FTB Chunks
1package dev.keii.keiichunks;
2
3public class RuntimeError {
4 private final Exception exception;
5 private final String executor;
6
7 public RuntimeError(Exception e, String executor)
8 {
9 this.exception = e;
10 this.executor = executor;
11 }
12
13 public String getExecutor() {
14 return executor;
15 }
16
17 public Exception getException() {
18 return exception;
19 }
20}