NAME

MVC::Neaf::X - base class for Not Even A Framework extentions.

SYNOPSIS

package MVC::Neaf::X::My::Module;
use parent qw(MVC::Neaf::X);

sub foo {
    my $self = shift;

    $self->my_croak("unimplemented"); # will die with package & foo prepended
};

1;

DESCRIPTION

Start out a Neaf extention by subclassing this class.

Some convenience methods here to help develop.

METHODS

new( %options )

Will happily accept any args and pack them into self.

my_croak( $message )

Like croak() from Carp, but the message is prefixed with self's package and the name of method in which error occurred.