- Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy patherror.py
More file actions
Latest commit
29 lines (22 loc) · 440 Bytes
/
Copy patherror.py
File metadata and controls
29 lines (22 loc) · 440 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from __future__ importprint_function
#*********************************************************************
#* KLTError
#*
#* Prints an error message and dies.
#*
#* INPUTS
#* exactly like printf
#*
defKLTError(err):
print(err)
exit(1)
#*********************************************************************
#* KLTWarning
#*
#* Prints a warning message.
#*
#* INPUTS
#* exactly like printf
#*
defKLTWarning(err):
print(err)