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

use v6.c;

class Config::Exception::UnknownTypeException is Exception
{
    method message()
    {
        "Could not deduce loader type."
    }
}