1 18 19 20 package sync4j.framework.server.error; 21 22 import sync4j.framework.core.StatusCode; 23 import sync4j.framework.server.error.ServerException; 24 25 26 30 public class InvalidCredentialsException extends ServerException { 31 public InvalidCredentialsException(final String msg) { 32 this(msg, null); 33 } 34 35 public InvalidCredentialsException(final Throwable cause) { 36 this("", cause); 37 } 38 39 public InvalidCredentialsException(final String msg, final Throwable cause){ 40 super(StatusCode.INVALID_CREDENTIALS, msg, cause); 41 } 42 } 43 | Popular Tags |