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

/**
 * CCBParseException is thrown when a response from CCB cannot be parsed.
 */
public class CCBParseException extends CCBException {
    public CCBParseException(String message) {
        super(message);
    }

    public CCBParseException(String message, Throwable cause) {
        super(message, cause);
    }
}