Changeset 15108 for platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/exception/MiniblogServiceRuntimeException.java
- Timestamp:
- 07/03/08 17:29:31 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/exception/MiniblogServiceRuntimeException.java
r15107 r15108 1 1 package jp.xet.sabotter.core.exception; 2 2 3 /** 4 * TODO describe 5 * @author daisuke 6 */ 7 @SuppressWarnings("serial") 3 8 public class MiniblogServiceRuntimeException extends RuntimeException { 4 9 10 /** 11 * コンストラクタ。 12 * @category instance creation 13 */ 5 14 public MiniblogServiceRuntimeException() { 6 15 } 7 16 17 /** 18 * コンストラクタ。 19 * @param message 20 * @category instance creation 21 */ 8 22 public MiniblogServiceRuntimeException(String message) { 9 23 super(message); 10 24 } 11 25 26 /** 27 * コンストラクタ。 28 * @param cause 29 * @category instance creation 30 */ 12 31 public MiniblogServiceRuntimeException(Throwable cause) { 13 32 super(cause); 14 33 } 15 34 35 /** 36 * コンストラクタ。 37 * @param message 38 * @param cause 39 * @category instance creation 40 */ 16 41 public MiniblogServiceRuntimeException(String message, Throwable cause) { 17 42 super(message, cause);
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)