packagecom.p4square.ccbapi.exception;/** * CCBParseException is thrown when a response from CCB cannot be parsed. */publicclassCCBParseExceptionextendsCCBException{publicCCBParseException(Stringmessage){super(message);}publicCCBParseException(Stringmessage,Throwablecause){super(message,cause);}}