aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-07-12 08:54:31 +0200
committerPatrick Spek <p.spek@tyil.nl>2023-07-25 02:17:26 +0200
commit04bbe0524a9443284c202905180b98fa5e55f0f8 (patch)
treecdc2dbe7dc9dcd60ab699997367c3f7e5479155f /lib
parentbb450bd96b02b48ed8b277fa0a6ca5c97037a680 (diff)
Remove stale files
Diffstat (limited to 'lib')
-rw-r--r--lib/Config/Exception/FileNotFoundException.pm613
-rw-r--r--lib/Config/Exception/MissingParserException.pm613
-rw-r--r--lib/Config/Exception/UnimplementedMethodException.pm613
3 files changed, 0 insertions, 39 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"
- }
-}
diff --git a/lib/Config/Exception/MissingParserException.pm6 b/lib/Config/Exception/MissingParserException.pm6
deleted file mode 100644
index 484026a..0000000
--- a/lib/Config/Exception/MissingParserException.pm6
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /usr/bin/env false
-
-use v6.c;
-
-class Config::Exception::MissingParserException is Exception
-{
- has Str $.parser;
-
- method message()
- {
- "$!parser is not a valid parser. Are you sure its installed?"
- }
-}
diff --git a/lib/Config/Exception/UnimplementedMethodException.pm6 b/lib/Config/Exception/UnimplementedMethodException.pm6
deleted file mode 100644
index 10af289..0000000
--- a/lib/Config/Exception/UnimplementedMethodException.pm6
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /usr/bin/env false
-
-use v6.c;
-
-class Config::Exception::UnimplementedMethodException is Exception
-{
- has Str $.method;
-
- method message()
- {
- "The $!method method is not implemented"
- }
-}