aboutsummaryrefslogtreecommitdiff
path: root/lib/Config/Exception/UnknownTypeException.pm6
blob: 095572bcba766767bb3c3c8f46e09543fbfcf18d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /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."
    }
}