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("此帳號目前無使用此平台之權限"); } }