themeinstaller/source/src/com/nokia/tools/themeinstaller/odtconverter/ODTException.java
branchRCL_3
changeset 17 fe49e33862e2
parent 16 b685c59de105
child 18 04b7640f6fb5
equal deleted inserted replaced
16:b685c59de105 17:fe49e33862e2
     1 /*
       
     2 * Copyright (c) 2007 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 "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:  Exception for ODT parsing operations
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 package com.nokia.tools.themeinstaller.odtconverter;
       
    20 
       
    21 /**
       
    22  * The Class ODTException.
       
    23  */
       
    24 public class ODTException extends Exception
       
    25     {
       
    26 
       
    27     // Default serial version UID
       
    28     private static final long serialVersionUID = 1L;
       
    29 
       
    30     /**
       
    31      * Instantiates a new ODT exception.
       
    32      *
       
    33      * @param aMessage the message
       
    34      */
       
    35     public ODTException( String aMessage )
       
    36         {
       
    37         super( aMessage );
       
    38         }
       
    39 
       
    40     }