buildframework/helium/sf/java/core/src/com/nokia/helium/core/EmailSendException.java
changeset 628 7c4a911dc066
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
       
     1 /*
       
     2  * Copyright (c) 2010-2011 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:  
       
    15  *
       
    16  */
       
    17 
       
    18 package com.nokia.helium.core;
       
    19 
       
    20 /**
       
    21  * Email sending exception handling class
       
    22  */
       
    23 public class EmailSendException extends Exception {
       
    24 
       
    25     private static final long serialVersionUID = 7997902958106522082L;
       
    26 
       
    27     /**
       
    28      * Constructor
       
    29      * 
       
    30      * @param String
       
    31      *            exception message
       
    32      */
       
    33     public EmailSendException(String exception) {
       
    34         super(exception);
       
    35     }
       
    36 
       
    37     public EmailSendException(String exception, Throwable cause) {
       
    38         super(exception, cause);
       
    39     }
       
    40 }