6 package com.google.appinventor.components.runtime.errors;
10 import java.util.Arrays;
14 private final int errorCode;
15 @SuppressWarnings(
"squid:S1948")
16 private final Object[] arguments;
20 this.errorCode = errorCode;
21 this.arguments =
new Object[0];
26 this.errorCode = errorCode;
27 this.arguments = arguments;
35 return Arrays.copyOf(arguments, arguments.length);