add new IllegalIdentifierChangeException

This commit is contained in:
Eduard Heimbuch
2019-08-21 10:34:40 +02:00
parent 64c03e667c
commit 72fe69b2d5

View File

@@ -0,0 +1,21 @@
package sonia.scm;
import java.util.Collections;
public class IllegalIdentifierChangeException extends BadRequestException {
private static final String CODE = "thbsUFokjk";
public IllegalIdentifierChangeException(ContextEntry.ContextBuilder context, String message) {
super(context.build(), message);
}
public IllegalIdentifierChangeException(String message) {
super(Collections.emptyList(), message);
}
@Override
public String getCode() {
return CODE;
}
}