NAME
Data::Object::Role::Throwable
ABSTRACT
Throwable Role for Perl 5
SYNOPSIS
package Example;
use Moo;
with 'Data::Object::Role::Throwable';
package main;
my $example = Example->new;
# $example->throw
DESCRIPTION
This package provides mechanisms for throwing the object as an exception.
METHODS
This package implements the following methods:
throw
throw(Tuple[Str, Str] | Str $message, Maybe[Number] $offset) : Any
The throw method throws an exception with the object and the given message. The object is thrown as the exception context. See Data::Object::Exception for more information.
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the terms of the The Apache License, Version 2.0, as elucidated in the "license file".