12 lines
376 B
Java
12 lines
376 B
Java
package com.banesco.common.domain.exception;
|
|
|
|
public class BusinessException extends BaseApiException {
|
|
public BusinessException(String errorCode, String message, String fieldPath) {
|
|
super(errorCode, message, fieldPath, "business");
|
|
}
|
|
|
|
public BusinessException(String errorCode, String fieldPath) {
|
|
super(errorCode, fieldPath, "business");
|
|
}
|
|
}
|