The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
=begin pod

=title class X::Attribute::Undeclared

    class X::Attribute::Undeclared is X::Undeclared { }

Thrown when code refers to an attribute that has not been declared.

For example the code

    class A { method m { $!notthere } }

Produces the error

    Attribute $!notthere not declared in class A

=head1 Methods

=head2 package-kind

Returns the kind of package the attribute was used in (for example C<class>,
C<grammar>)

=head2 package-name

Returns the name of the package in which the offensive attribute reference
was performed.

=end pod