File Coverage

blib/lib/Class/Value/Exception/UnsupportedOperation.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1 1     1   32 use 5.008;
  1         4  
  1         49  
2 1     1   7 use strict;
  1         2  
  1         34  
3 1     1   6 use warnings;
  1         3  
  1         70  
4              
5             package Class::Value::Exception::UnsupportedOperation;
6             our $VERSION = '1.100840';
7             # ABSTRACT: An unsupported operation was performed on a value object
8 1     1   6 use parent 'Class::Value::Exception';
  1         1  
  1         8  
9             __PACKAGE__->mk_scalar_accessors(qw(opname));
10 1         52 use constant default_message =>
11 1     1   2203 'Value object of type [%s], value [%s], does not support operation [%s]';
  1         2  
12 1     1   5 use constant PROPERTIES => ('opname');
  1         3  
  1         7338  
13             1;
14              
15              
16             __END__