summaryrefslogtreecommitdiff
path: root/ldtpd/server_exception.py
blob: f0c3f5434edc37a3fad87f7277b2b2251d6bc0f8 (plain)
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
'''
LDTP v2 Server exception

@author: Eitan Isaacson <eitan@ascender.com>
@copyright: Copyright (c) 2009 Eitan Isaacson
@license: LGPL

http://ldtp.freedesktop.org

This file may be distributed and/or modified under the terms of the GNU Lesser General
Public License version 2 as published by the Free Software Foundation. This file
is distributed without any warranty; without even the implied warranty of 
merchantability or fitness for a particular purpose.

See "COPYING" in the source distribution for more information.

Headers in this file shall remain intact.
'''

from twisted.web import xmlrpc

ERROR_CODE = 123

class LdtpServerException(xmlrpc.Fault):
    def __init__(self, message):
        xmlrpc.Fault.__init__(self, ERROR_CODE, message)