summaryrefslogtreecommitdiff
path: root/Tools/Java/Source/GenBuild/org/tianocore/build/exception
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Java/Source/GenBuild/org/tianocore/build/exception')
-rw-r--r--Tools/Java/Source/GenBuild/org/tianocore/build/exception/AutoGenException.java40
-rw-r--r--Tools/Java/Source/GenBuild/org/tianocore/build/exception/GenBuildException.java40
-rw-r--r--Tools/Java/Source/GenBuild/org/tianocore/build/exception/PcdAutogenException.java35
-rw-r--r--Tools/Java/Source/GenBuild/org/tianocore/build/exception/PlatformPcdPreprocessBuildException.java36
-rw-r--r--Tools/Java/Source/GenBuild/org/tianocore/build/exception/XmlParseException.java35
5 files changed, 0 insertions, 186 deletions
diff --git a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/AutoGenException.java b/Tools/Java/Source/GenBuild/org/tianocore/build/exception/AutoGenException.java
deleted file mode 100644
index 5db092be48..0000000000
--- a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/AutoGenException.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/** @file
- AutoGenException 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;
-
-
-/**
- The class handle the exception throwed by entity class.
-**/
-public class AutoGenException extends GenBuildException {
- static final long serialVersionUID = -8034897190740066939L;
- /**
- Constructure function
-
- @param expStr exception message string.
- **/
- public AutoGenException(String expStr) {
- super(expStr);
- }
-
- public AutoGenException() {
-
- }
-
- public AutoGenException(Exception e, String messsge){
- super(e, messsge);
- }
-} \ No newline at end of file
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);
- }
-}
diff --git a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/PcdAutogenException.java b/Tools/Java/Source/GenBuild/org/tianocore/build/exception/PcdAutogenException.java
deleted file mode 100644
index 3a3430c820..0000000000
--- a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/PcdAutogenException.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/** @file
- AutoGenException 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;
-
-/**
- The class handle the exception throwed by entity class.
-**/
-public class PcdAutogenException extends AutoGenException {
- static final long serialVersionUID = -8034897190740066936L;
- /**
- Constructure function
-
- @param expStr exception message string.
- **/
- public PcdAutogenException(String expStr) {
- super(expStr);
- }
-
- public PcdAutogenException() {
- super();
- }
-}
diff --git a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/PlatformPcdPreprocessBuildException.java b/Tools/Java/Source/GenBuild/org/tianocore/build/exception/PlatformPcdPreprocessBuildException.java
deleted file mode 100644
index 6bf6110148..0000000000
--- a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/PlatformPcdPreprocessBuildException.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/** @file
- PlatformPcdPreprocessBuildException class.
-
- The class handle the exception throwed by PlatformPcdPreprocessActionForBuilding 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;
-
-public class PlatformPcdPreprocessBuildException extends GenBuildException {
- /**
- serial version ID
- **/
- private static final long serialVersionUID = -1014589090055424954L;
-
- /**
- Constructure function
-
- @param expStr exception message string.
- **/
- public PlatformPcdPreprocessBuildException(String expStr) {
- super(expStr);
- }
-
- public PlatformPcdPreprocessBuildException() {
- super();
- }
-}
diff --git a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/XmlParseException.java b/Tools/Java/Source/GenBuild/org/tianocore/build/exception/XmlParseException.java
deleted file mode 100644
index 44d3fdc389..0000000000
--- a/Tools/Java/Source/GenBuild/org/tianocore/build/exception/XmlParseException.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/** @file
- XmlParseException 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;
-
-/**
- The class handle the exception throwed by entity class.
-**/
-public class XmlParseException extends GenBuildException {
- static final long serialVersionUID = -8034897190740066934L;
- /**
- Constructure function
-
- @param expStr exception message string.
- **/
- public XmlParseException(String expStr) {
- super(expStr);
- }
-
- public XmlParseException() {
- super();
- }
-} \ No newline at end of file