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

use v6.c;

class Config::Exception::UnimplementedMethodException is Exception
{
    has Str $.method;

    method message()
    {
        "The $!method method is not implemented"
    }
}