| 54 | |
| 55 | |
| 56 | class BuildError(Exception): |
| 57 | msg = \ |
| 58 | """ |
| 59 | An error occured while building a instance of (%s). As a result |
| 60 | the object you requested could not be constructed. It is recommended |
| 61 | that you construct the type manually using a Suds object. |
| 62 | Please open a ticket with a description of this error. |
| 63 | Reason: %s |
| 64 | """ |
| 65 | |
| 66 | def __init__(self, name, exception): |
| 67 | Exception.__init__(self, BuildError.msg % (name, exception)) |
| 68 | |
| 69 | |
| 70 | class SoapHeadersNotPermitted(Exception): |