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

use v6.c;

class Config::Exception::MissingParserException is Exception
{
    has Str $.parser;

    method message()
    {
        "$!parser is not a valid parser. Are you sure its installed?"
    }
}