Solstice::View::InvalidPreConditions - A view shown when sanity checks fail and no fallback is designated.


Solstice documentation Contained in the Solstice distribution.

Index


Code Index:

NAME

Top

Solstice::View::InvalidPreConditions - A view shown when sanity checks fail and no fallback is designated.

SYNOPSIS

Top

DESCRIPTION

Top

Superclass

Solstice::View

Export

No symbols exported.

Methods

Private Methods

Modules Used

Solstice::View

AUTHOR

Top

Catalyst Group, <catalyst@u.washington.edu>

VERSION

Top

$Revision: 3364 $

COPYRIGHT

Top


Solstice documentation Contained in the Solstice distribution.
package Solstice::View::InvalidPreConditions;

# $Id: InvalidPreConditions.pm 3364 2006-05-05 07:18:21Z mcrawfor $

use 5.006_000;
use strict;
use warnings;

use Solstice::View;
our @ISA = qw(Solstice::View);
our ($VERSION) = ('$Revision: 3364 $' =~ /^\$Revision:\s*([\d.]*)/);

sub new {
    my $obj = shift;
    my $self = $obj->SUPER::new(@_);

    $self->_setTemplate('invalid_preconditions.html');
    $self->_setTemplatePath('templates');

    return $self;
}

sub _getTemplateParams {
    my $self = shift;
    return {};
}

1;

__END__