public AccountLoginFault(LoginFaultType faultType, Throwable cause) {
   super(faultType.toString(), cause);
   this.faultType = faultType;
 }
 public AccountLoginFault(LoginFaultType faultType, Long accountID) {
   super(faultType.toString());
   this.faultType = faultType;
   this.accountID = accountID;
 }
 public AccountLoginFault(LoginFaultType faultType, String naturalID) {
   super(faultType.toString());
   this.faultType = faultType;
   this.naturalID = naturalID;
 }
 public AccountLoginFault(LoginFaultType faultType) {
   super(faultType.toString());
   this.faultType = faultType;
 }