tracefw/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/TraceCompilerRootException.java
branchRCL_3
changeset 20 ca8a1b6995f6
equal deleted inserted replaced
19:07b41fa8d1dd 20:ca8a1b6995f6
       
     1 /*
       
     2  * Copyright (c) 2009 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:
       
    15  *
       
    16  * Command-line based view implementation
       
    17  *
       
    18  */
       
    19 package com.nokia.tracecompiler;
       
    20 
       
    21 
       
    22 public class TraceCompilerRootException extends Exception {
       
    23 	// Serial version UID, as required for all Exceptions
       
    24 	private static final long serialVersionUID = 2126996710246333574L;
       
    25 	
       
    26 
       
    27 	/**
       
    28 	 * Constructs a TraceCompilerRootException with the given detail message and
       
    29 	 * cause.
       
    30 	 * @param message the detail message
       
    31 	 * @param cause the Exception that caused this Exception
       
    32 	 */
       
    33 	public TraceCompilerRootException(String message, Throwable cause)
       
    34 	{
       
    35 		super(message, cause);
       
    36 	}
       
    37 }