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