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

NAME

Egg::Const - Constant module for Egg.

SYNOPSIS

  use Egg::Const;
  
  if ( OK            == 200 ) { ... }
  if ( AUTH_REQUIRED == 401 ) { ... }
  if ( FORBIDDEN     == 403 ) { ... }
  if ( NOT_FOUND     == 404 ) { ... }
  if ( SERVER_ERROR  == 500 ) { ... }
  
  if     ( OK )    { ... }
  unless ( FALSE ) { ... }

DESCRIPTION

It is an ordinary constant module.

There is no explained thing.

EXPORT METHODS

OK 200

AUTH_REQUIRED 401

FORBIDDEN 403

NOT_FOUND 404

SERVER_ERROR 500

TRUE 1

FALSE 0

SEE ALSO

Egg::Plugin::Dispatch, Egg::Release,

AUTHOR

Masatoshi Mizuno, <lushe@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2007 Bee Flag, Corp. <http://egg.bomcity.com/>, All Rights Reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.