aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Exception/FileNotFoundException.pm6
blob: b00f9560173c5493515a4f7ba9e6ed2d12ed79f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env false

use v6.c;

class Config::Exception::FileNotFoundException is Exception
{
    has Str $.path;

    method message()
    {
        "Could not find file at $!path"
    }
}