sysmodelmgr/com.symbian.smt.gui/src/com/symbian/smt/gui/SystemDefinitionValidationException.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 //
       
    15 
       
    16 package com.symbian.smt.gui;
       
    17 
       
    18 
       
    19 @SuppressWarnings("serial")
       
    20 public class SystemDefinitionValidationException extends Exception {
       
    21 
       
    22 	/**
       
    23 	 * Constructs a new exception that indicates that System Definition validation has failed but a build may still be attempted.
       
    24 	 * @param message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
       
    25 	 */
       
    26 	public SystemDefinitionValidationException(String message) {
       
    27 		super(message);
       
    28 	}
       
    29 
       
    30 	/**
       
    31 	 * Constructs a new exception that indicates that System Definition validation has failed but a build may still be attempted.
       
    32 	 * @param cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
       
    33 	 */
       
    34 	public SystemDefinitionValidationException(Throwable cause) {
       
    35 		super(cause);
       
    36 	}
       
    37 
       
    38 	/**
       
    39 	 * Constructs a new exception that indicates that System Definition validation has failed but a build may still be attempted.
       
    40 	 * @param message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.
       
    41 	 * @param cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
       
    42 	 */
       
    43 	public SystemDefinitionValidationException(String message, Throwable cause) {
       
    44 		super(message, cause);
       
    45 	}
       
    46 
       
    47 }