com.geotab.http.exception.PasswordPolicyViolationException Maven / Gradle / Ivy
/*
*
* 2020 Copyright (C) Geotab Inc. All rights reserved.
*/
package com.geotab.http.exception;
/**
* Exception thrown when the password policy is violated.
*/
public class PasswordPolicyViolationException extends JsonRpcErrorDataException {
public PasswordPolicyViolationException(String message) {
super(message);
}
}