|
Last change
on this file since 6573 was 4231, checked in by stoecker, 14 years ago |
|
add signpost and metadata extractor code to repository directly
|
|
File size:
370 bytes
|
| Line | |
|---|
| 1 | package oauth.signpost.exception;
|
|---|
| 2 |
|
|---|
| 3 | @SuppressWarnings("serial")
|
|---|
| 4 | public 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.