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

use v6.c;

class Config::Exception::FileNotFoundException is Exception
{
    method message()
    {
        "Could not find file"
    }
}