aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Exception/UnsupportedTypeException.pm6
diff options
context:
space:
mode:
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?"
- }
-}