aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Exception/UnsupportedTypeException.pm6
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2017-04-24 11:12:08 +0200
committerPatrick Spek <p.spek@tyil.nl>2017-04-24 11:12:08 +0200
commitb01a053e3d4012064a667745634010dd654b4777 (patch)
treeed702ba420a3cda7f39f0b6b249b294f02dca487 /lib/Config/Exception/UnsupportedTypeException.pm6
parentede6b8c4cfac8c5eed668ba8357f9e8b11ccbc43 (diff)
Update exceptions with more meaningful messages
Diffstat (limited to 'lib/Config/Exception/UnsupportedTypeException.pm6')
-rw-r--r--lib/Config/Exception/UnsupportedTypeException.pm611
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/Config/Exception/UnsupportedTypeException.pm6 b/lib/Config/Exception/UnsupportedTypeException.pm6
deleted file mode 100644
index c2f6f10..0000000
--- a/lib/Config/Exception/UnsupportedTypeException.pm6
+++ /dev/null
@@ -1,11 +0,0 @@
-#! /usr/bin/env false
-
-use v6.c;
-
-class Config::Exception::UnsupportedTypeException is Exception
-{
- method message()
- {
- "No parser support for the given file. Have you imported a correct parser?"
- }
-}