source: josm/trunk/src/oauth/signpost/exception/OAuthException.java@ 12634

Last change on this file since 12634 was 4231, checked in by stoecker, 13 years ago

add signpost and metadata extractor code to repository directly

File size: 370 bytes
Line 
1package oauth.signpost.exception;
2
3@SuppressWarnings("serial")
4public abstract class OAuthException extends Exception {
5
6 public OAuthException(String message) {
7 super(message);
8 }
9
10 public OAuthException(Throwable cause) {
11 super(cause);
12 }
13
14 public OAuthException(String message, Throwable cause) {
15 super(message, cause);
16 }
17}
Note: See TracBrowser for help on using the repository browser.