com.leonarduk.clearcheckbook.ClearcheckbookException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clearcheckbookapi Show documentation
Show all versions of clearcheckbookapi Show documentation
A Java library to access the HTTP developer API for
Clearcheckbook.com, the money management website.
package com.leonarduk.clearcheckbook;
public class ClearcheckbookException extends Exception {
/**
*
*/
private static final long serialVersionUID = -6833991090411157540L;
public ClearcheckbookException(String text) {
super(text);
}
public ClearcheckbookException(String text, Throwable exception) {
super(text, exception);
}
}