public IllegalArgumentException parameterIsNullException(String parameterName) {
return new IllegalArgumentException(exceptionMessage("001", "Parameter '{}' is null", parameterName));
}
public SpinRuntimeException unableToInstantiateClass(String className, Exception cause) {
return new SpinRuntimeException(exceptionMessage("002", "Unable to instantiate class '{}'", className), cause);
}