8000 Moved TwimlException · DannyTandazo/twilio-python@df5ea6f · GitHub
[go: up one dir, main page]

Skip to content

Commit df5ea6f

Browse files
author
Paul Hallett
committed
Moved TwimlException
1 parent 4a2f191 commit df5ea6f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

twilio/exceptions.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# -*- coding: utf-8 -*-
22
class TwilioException(Exception):
33
pass
4+
5+
6+
class TwimlException(Exception):
7+
pass

twilio/twiml.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
"""
44
import xml.etree.ElementTree as ET
55

6-
7-
class TwimlException(Exception):
8-
pass
6+
from exceptions import TwimlException
97

108

119
class Verb(object):

0 commit comments

Comments
 (0)
0