aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Exception/UnknownTypeException.pm6
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Config/Exception/UnknownTypeException.pm6')
-rw-r--r--lib/Config/Exception/UnknownTypeException.pm613
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Config/Exception/UnknownTypeException.pm6 b/lib/Config/Exception/UnknownTypeException.pm6
deleted file mode 100644
index 095572b..0000000
--- a/lib/Config/Exception/UnknownTypeException.pm6
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /usr/bin/env false
-
-use v6.c;
-
-class Config::Exception::UnknownTypeException is Exception
-{
- has Str $.file;
-
- method message()
- {
- "Could not deduce loader type for $!file."
- }
-}