保誠-保戶業務員媒合平台
wayne
2022-02-22 1a8622c14a2b8686a5655523d22167354b3834cf
1
2
3
4
5
6
7
8
9
10
11
package com.pollex.pam.web.rest.errors;
 
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
 
@ResponseStatus(value = HttpStatus.UNAUTHORIZED)
public class ConsultantDisableException extends RuntimeException {
    public ConsultantDisableException() {
        super("此帳號目前無使用此平台之權限");
    }
}