diff options
Diffstat (limited to 'lib/Matrix/Client/Exception.pm6')
-rw-r--r-- | lib/Matrix/Client/Exception.pm6 | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/Matrix/Client/Exception.pm6 b/lib/Matrix/Client/Exception.pm6 deleted file mode 100644 index e02f572..0000000 --- a/lib/Matrix/Client/Exception.pm6 +++ /dev/null @@ -1,16 +0,0 @@ -package X::Matrix { - class Response is Exception { - has $.code; - has $.error; - - method message { - "$!code: $!error" - } - } - - class MXCParse is Exception { - has $.uri; - - method message { "Cannot parse '$!uri'" } - } -} |