X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=Tools%2FJava%2FSource%2FGenBuild%2Forg%2Ftianocore%2Fbuild%2Fexception%2FGenBuildException.java;fp=Tools%2FJava%2FSource%2FGenBuild%2Forg%2Ftianocore%2Fbuild%2Fexception%2FGenBuildException.java;h=0000000000000000000000000000000000000000;hb=808def96aa4589fba9c2d0ea55837754a3b7a4f7;hp=b81d54cba2decbd143ccda488a674d0651863b13;hpb=9216450d1143056a50a5f916984a2d7faf590488;p=mirror_edk2.git diff --git a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/GenBuildException.java b/Tools/Java/Source/GenBuild/org/tianocore/build/exception/GenBuildException.java deleted file mode 100644 index b81d54cba2..0000000000 --- a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/GenBuildException.java +++ /dev/null @@ -1,40 +0,0 @@ -/** @file - GenBuildException class. - - The class handle the exception throwed by entity class. - -Copyright (c) 2006, Intel Corporation -All rights reserved. This program and the accompanying materials -are licensed and made available under the terms and conditions of the BSD License -which accompanies this distribution. The full text of the license may be found at -http://opensource.org/licenses/bsd-license.php - -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ -package org.tianocore.build.exception; - -import org.tianocore.common.exception.EdkException; - -/** - The class handle the exception throwed by entity class. -**/ -public class GenBuildException extends EdkException { - static final long serialVersionUID = -8034897190740066937L; - /** - Constructure function - - @param expStr exception message string. - **/ - public GenBuildException(String expStr) { - super(expStr); - } - - public GenBuildException() { - super(); - } - public GenBuildException(Exception e, String message){ - super(e, message); - } -}