Commit 192f049b authored by neo.wang's avatar neo.wang

Merge branch 'dev_oracle_neo' into 'dev_oracle'

[bugfix] fixed bad param exception with no construct

See merge request root/atms!148
parents 62616331 e706d631
......@@ -3,6 +3,10 @@ package pwc.taxtech.atms.exception;
import org.springframework.http.ResponseEntity;
public class BadParameterException extends ApiException {
public BadParameterException() {
super();
}
public BadParameterException(String 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