WSST::Schema::Error - Schema::Error class of WSST


WSST documentation Contained in the WSST distribution.

Index


Code Index:

NAME

Top

WSST::Schema::Error - Schema::Error class of WSST

DESCRIPTION

Top

This class represents the error elements of schema.

METHODS

Top

new

Constructor.

values

Accessor for the values.

error_message

Accessor for the service name.

error_message_map

Accessor for the service name.

SEE ALSO

Top

http://code.google.com/p/wsst/

AUTHORS

Top

Mitsuhisa Oshikawa <mitsuhisa [at] gmail.com> Yusuke Kawasaki <u-suke [at] kawa.net>

COPYRIGHT AND LICENSE

Top


WSST documentation Contained in the WSST distribution.

package WSST::Schema::Error;

use strict;
use base qw(WSST::Schema::Node);
__PACKAGE__->mk_accessors(qw(values error_message error_message_map));

use constant BOOL_FIELDS => qw(multiple nullable error_message);

our $VERSION = '0.1.1';

1;