Show
Ignore:
Timestamp:
07/03/08 17:29:31 (5 months ago)
Author:
daisuke_m
Message:

javadoc修正など、色々掃除。

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  
    11package jp.xet.sabotter.core.exception; 
    22 
     3/** 
     4 * TODO describe 
     5 * @author daisuke 
     6 */ 
     7@SuppressWarnings("serial") 
    38public class MiniblogServiceRuntimeException extends RuntimeException { 
    49         
     10        /** 
     11         * コンストラクタ。 
     12         * @category instance creation 
     13         */ 
    514        public MiniblogServiceRuntimeException() { 
    615        } 
    716         
     17        /** 
     18         * コンストラクタ。 
     19         * @param message 
     20         * @category instance creation 
     21         */ 
    822        public MiniblogServiceRuntimeException(String message) { 
    923                super(message); 
    1024        } 
    1125         
     26        /** 
     27         * コンストラクタ。 
     28         * @param cause 
     29         * @category instance creation 
     30         */ 
    1231        public MiniblogServiceRuntimeException(Throwable cause) { 
    1332                super(cause); 
    1433        } 
    1534         
     35        /** 
     36         * コンストラクタ。 
     37         * @param message 
     38         * @param cause 
     39         * @category instance creation 
     40         */ 
    1641        public MiniblogServiceRuntimeException(String message, Throwable cause) { 
    1742                super(message, cause);