Changeset 14191 for lang/java/mvnbeans
- Timestamp:
- 06/18/08 01:21:06 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/java/mvnbeans/trunk/src/main/java/jp/javelindev/mvnbeans/exception/RepositoryIOException.java
r8951 r14191 27 27 28 28 private static final long serialVersionUID = 1L; 29 30 private Throwable cause = this; 29 31 30 32 public RepositoryIOException() { … … 33 35 34 36 public RepositoryIOException(String message, Throwable cause) { 35 super(message, cause); 37 super(message); 38 this.cause = cause; 36 39 } 37 40 … … 41 44 42 45 public RepositoryIOException(Throwable cause) { 43 super(cause);46 this.cause = cause; 44 47 } 45 48 49 @Override 50 public Throwable getCause() { 51 return (cause==this ? null : cause); 52 } 46 53 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)