sysmodelmgr/com.symbian.smt.gui/src/com/symbian/smt/gui/smtwidgets/InvalidPathException.java
changeset 0 522a326673b6
equal deleted inserted replaced
-1:000000000000 0:522a326673b6
       
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // InvalidPathException
       
    15 //
       
    16 
       
    17 
       
    18 
       
    19 package com.symbian.smt.gui.smtwidgets;
       
    20 
       
    21 /**
       
    22  * @author barbararosi-schwartz
       
    23  * 
       
    24  */
       
    25 public class InvalidPathException extends Exception {
       
    26 
       
    27 	private static final long serialVersionUID = 1L;
       
    28 
       
    29 	/**
       
    30 	 * Default constructor
       
    31 	 */
       
    32 	public InvalidPathException() {
       
    33 	}
       
    34 
       
    35 	/**
       
    36 	 * This constructor takes a message as the exception message.
       
    37 	 * 
       
    38 	 * @param message
       
    39 	 */
       
    40 	public InvalidPathException(String message) {
       
    41 		super(message);
       
    42 	}
       
    43 
       
    44 	/**
       
    45 	 * This constructor takes a message as the exception message
       
    46 	 * and wraps the provided Throwable.
       
    47 	 * 
       
    48 	 * @param message	the String to be set as the exception message
       
    49 	 * @param t			the Throwable that is wrapped by this exception
       
    50 	 */
       
    51 	public InvalidPathException(String message, Throwable t) {
       
    52 		super(message, t);
       
    53 	}
       
    54 
       
    55 	/**
       
    56 	 * This constructor takes wraps the provided Throwable.
       
    57 	 * 
       
    58 	 * @param t			the Throwable that is wrapped by this exception
       
    59 	 */
       
    60 	public InvalidPathException(Throwable t) {
       
    61 		super(t);
       
    62 	}
       
    63 
       
    64 }