Commit e706d631 authored by neo's avatar neo

[bugfix] fixed bad param exception with no construct

parent 1465c69e
...@@ -3,6 +3,10 @@ package pwc.taxtech.atms.exception; ...@@ -3,6 +3,10 @@ package pwc.taxtech.atms.exception;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
public class BadParameterException extends ApiException { public class BadParameterException extends ApiException {
public BadParameterException() {
super();
}
public BadParameterException(String message) { public BadParameterException(String message) {
super(message); super(message);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment