summaryrefslogtreecommitdiff
path: root/src/main/java/com/p4square/ccbapi/exception/CCBRetryableErrorException.java
blob: c222662a297c902dbb0947a1ba8961db714af82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.p4square.ccbapi.exception;

/**
 * CCBRetryableErrorException is thrown when a retryable error is received.
 *
 * The caller may retry the request with an appropriate back-off.
 */
public class CCBRetryableErrorException extends CCBException {
    public CCBRetryableErrorException(final String message) {
        super(message);
    }
}