use of org.killbill.billing.jaxrs.json.BillingExceptionJson.StackTraceElementJson in project killbill by killbill.
the class JaxRsResourceBase method createBillingException.
private BillingExceptionJson createBillingException(final String message) {
final BillingExceptionJson exception;
exception = new BillingExceptionJson(PaymentApiException.class.getName(), null, message, null, null, Collections.<StackTraceElementJson>emptyList());
return exception;
}
Aggregations