summaryrefslogtreecommitdiffstats
path: root/src/scons/Errors.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-08-18 20:51:21 (GMT)
committerSteven Knight <knight@baldmt.com>2001-08-18 20:51:21 (GMT)
commit2bd067fd38e6d3a636c7d46a1273f2cdc72e653c (patch)
tree73bc220e14dbf684e0b7b3efe4c52d5e734d4c39 /src/scons/Errors.py
parent7884cffaf3380a66a999ae8db12e0418f96993c0 (diff)
downloadSCons-2bd067fd38e6d3a636c7d46a1273f2cdc72e653c.zip
SCons-2bd067fd38e6d3a636c7d46a1273f2cdc72e653c.tar.gz
SCons-2bd067fd38e6d3a636c7d46a1273f2cdc72e653c.tar.bz2
Implement error framework.
Diffstat (limited to 'src/scons/Errors.py')
-rw-r--r--src/scons/Errors.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/scons/Errors.py b/src/scons/Errors.py
new file mode 100644
index 0000000..2709c19
--- /dev/null
+++ b/src/scons/Errors.py
@@ -0,0 +1,18 @@
+"""scons.Errors
+
+This file contains the exception classes used to handle internal
+and user errors in scons.
+
+"""
+
+__revision__ = "Errors.py __REVISION__ __DATE__ __DEVELOPER__"
+
+
+
+class InternalError(Exception):
+ def __init__(self, args=None):
+ self.args = args
+
+class UserError(Exception):
+ def __init__(self, args=None):
+ self.args = args