Ignore:
Timestamp:
08/18/11 12:39:22 (13 years ago)
Author:
vmipsl
Message:

[Visualization] interface quite finish

File:
1 moved

Legend:

Unmodified
Added
Removed
  • ether_megapoli/trunk/common/implementation/com/ether/EtherException.java

    r129 r130  
    55 * @date 02 feb 2011 
    66 */ 
    7 public class WebException 
     7public class EtherException 
    88        extends FormattedException 
    99{ 
    10     public WebException( final Enum<? extends Code> code ) 
     10    public EtherException( final Enum<? extends Code> code ) 
    1111    { 
    1212        super( code ); 
    1313    } 
    1414 
    15     public WebException( final Enum<? extends Code> code, final Throwable cause, final Object... parameters ) 
     15    public EtherException( final Enum<? extends Code> code, final Throwable cause, final Object... parameters ) 
    1616    { 
    1717        this( code, cause.getMessage(), cause, parameters ); 
    1818    } 
    1919 
    20     protected WebException( final Enum<? extends Code> code, final String message, final Throwable cause, final Object... parameters ) 
     20    protected EtherException( final Enum<? extends Code> code, final String message, final Throwable cause, final Object... parameters ) 
    2121    { 
    2222        super( prefix( code, message ), cause, parameters ); 
    2323    } 
    2424 
    25     public WebException( final Throwable cause ) 
     25    public EtherException( final Throwable cause ) 
    2626    { 
    2727        super( cause ); 
    2828    } 
    2929 
    30     public WebException( final Enum<? extends Code> code, final String string ) 
     30    public EtherException( final Enum<? extends Code> code, final String string ) 
    3131    { 
    3232        super( code, string ); 
    3333    } 
    3434 
    35     public static enum WebCode 
     35    public static enum EtherCode 
    3636            implements Code 
    3737    { 
    38         UNKNOWN, 
    39         PERSISTENCE, 
    40         SERVICE_PROBLEM, 
    41         PLATEFORME_ID_NOT_FOUND, 
    4238        IO_EXCEPTION_ERROR_TO_GET_OUTPUTSTREAM, 
    43         ERROR_UNSUPPORTED_UTF8_ENCODING, 
    44         ERROR_NO_REQUEST_HANDLING_METHOD, 
    45         ERROR_NUMBER_OF_PARAM_TYPES_NOT_EQUAL_TO_PARAM_ANNOTATIONS, 
    46         FILE_NOT_FOUND; 
    4739    } 
    4840} 
Note: See TracChangeset for help on using the changeset viewer.