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

use v6.c;

class Config::Exception::UnimplementedMethodException is Exception
{
    method message()
    {
        "This method is not implemented"
    }
}