Attachment 'gnserr.py'
Download 1 import sys
2
3 class dbnameerr(StandardError):
4 def __init__(self, **kargs):
5 sys.stderr.write("no such db name: %s"%(str(kargs)))
6 sys.exit()
7
8 class urierr(StandardError):
9 def __init__(self, **kargs):
10 sys.stderr.write("uri error: %s\n"%(str(kargs)))
11
12 class urlerr(StandardError):
13 def __init__(self, **kargs):
14 sys.stderr.write("urlerr: %s\n"%(str(kargs)))
15
16 class haveserver(StandardError):
17 def __init__(self, serveruri):
18 sys.stderr.write("it's had this server: %s\n"%(str(serveruri)))
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.