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, 11 insertions, 0 deletions
diff --git a/lib/Config/Exception/UnsupportedTypeException.pm6 b/lib/Config/Exception/UnsupportedTypeException.pm6
new file mode 100644
index 0000000..c2f6f10
--- /dev/null
+++ b/lib/Config/Exception/UnsupportedTypeException.pm6
@@ -0,0 +1,11 @@
+#! /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?"
+ }
+}