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

NAME

XML::Schema::Exception - exception class for XML::Schema

SYNOPSIS

    use XML::Schema::Exception;

    my $err = XML::Schema::Exception->new('type_x', 'info_y');

    print $err->type();     # type_x
    print $err->info();     # info_y
    print $err->text();     # [type_x] info_y
    print $err;             # [type_x] info_y

    die $err;

DESCRIPTION

This module implements an exception class for XML::Schema.

AUTHOR

Andy Wardley <abw@kfs.org>

VERSION

This is version $Revision: 1.1.1.1 $ of the XML::Schema::Base module, distributed with version 0.1 of the XML::Schema module set.

COPYRIGHT

Copyright (C) 2001 Canon Research Centre Europe Ltd. All Rights Reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

See XML::Schema for general information about these modules and their use.