The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Venus::Role::Unacceptable - Unacceptable Role

ABSTRACT

Unacceptable Role for Perl 5

SYNOPSIS

package ExampleAccept;

use Venus::Class 'attr';

attr 'name';

package ExampleDeny;

use Venus::Class 'attr', 'with';

with 'Venus::Role::Unacceptable';

attr 'name';

package main;

my $example = ExampleDeny->new(name => 'example', test => 12345);

# Exception! (isa Venus::Role::Unacceptable::Error)

DESCRIPTION

This package provides a mechanism for raising an exception when unexpected constructor arguments are encountered.

AUTHORS

Awncorp, awncorp@cpan.org

LICENSE

Copyright (C) 2022, Awncorp, awncorp@cpan.org.

This program is free software, you can redistribute it and/or modify it under the terms of the Apache license version 2.0.