Don't fill in stacktrace for ServiceError

This commit is contained in:
Alexander Söderberg 2020-05-17 18:03:04 +02:00
parent 49f51f24f7
commit 736004d88b
No known key found for this signature in database
GPG Key ID: C0207FF7EA146678

View File

@ -40,4 +40,8 @@ public class ServiceError extends RuntimeException {
super(message, cause);
}
@Override public Throwable fillInStackTrace() {
return this;
}
}