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

use v6.c;

class Config::Exception::UnsupportedTypeException is Exception
{
    method message()
    {
        "No parser support for the given file. Have you imported a correct parser?"
    }
}