ReusedPasswordException.java
/*
* Copyright 2026 Global Crop Diversity Trust
* Licensed under the Apache License, Version 2.0
* See LICENSE file in project root folder or http://www.apache.org/licenses/LICENSE-2.0
*/
package org.gringlobal.api.exception;
public class ReusedPasswordException extends InvalidApiUsageException {
private static final long serialVersionUID = -8820280330325604819L;
/**
* Instantiates a new reused password exception.
*/
public ReusedPasswordException() {
super();
}
/**
* Instantiates a new reused password exception.
*
* @param message the message
*/
public ReusedPasswordException(final String message) {
super(message);
}
/**
* Instantiates a new reused password exception.
*
* @param message the message
* @param cause the cause
*/
public ReusedPasswordException(final String message, final Throwable cause) {
super(message, cause);
}
/**
* Instantiates a new reused password exception.
*
* @param cause the cause
*/
public ReusedPasswordException(final Throwable cause) {
super(cause);
}
}