logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Specio::Exception - An exception class for type constraint failures

Api

       This class provides the following methods:

   $exception->message
       The error message associated with the exception.

   $exception->stack_trace
       A Devel::StackTrace object for the exception.

   $exception->type
       The type constraint object against which the value failed.

   $exception->value
       The value that failed the type check.

   $exception->as_string
       The exception as a string. This includes the method and the stack trace.

Author

       Dave Rolsky <autarch@urth.org>

Description

       This exception class is thrown by Specio when a type check fails. It emulates the Throwable::Error API,
       but doesn't use that module to avoid adding a dependency on Moo.

Name

       Specio::Exception - An exception class for type constraint failures

Overloading

       This class overloads stringification to call the "as_string" method.

Source

       The source code repository for Specio can be found at <https://github.com/houseabsolute/Specio>.

Support

       Bugs may be submitted at <https://github.com/houseabsolute/Specio/issues>.

Synopsis

         use Try::Tiny;

         try {
             $type->validate_or_die($value);
         }
         catch {
             if ( $_->isa('Specio::Exception') ) {
                 print $_->message, "\n";
                 print $_->type->name, "\n";
                 print $_->value, "\n";
             }
         };

Version

       version 0.50

See Also