File: Base.pm

package info (click to toggle)
libcassandra-client-perl 0.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 716 kB
  • sloc: perl: 3,898; ansic: 1,767; makefile: 3
file content (42 lines) | stat: -rw-r--r-- 912 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package Cassandra::Client::Error::Base;
our $AUTHORITY = 'cpan:TVDW';
$Cassandra::Client::Error::Base::VERSION = '0.21';
use 5.010;
use strict;
use warnings;

sub new { my $class= shift; bless { code => -1, message => "An unknown error occurred", @_ }, $class }
use overload '""' => sub { $_[0]->to_string };
sub to_string { "Error $_[0]{code}: $_[0]{message}" }
sub code { $_[0]{code} }
sub message { $_[0]{message} }
sub is_request_error { $_[0]{request_error} }
sub do_retry { $_[0]{do_retry} }
sub is_timeout { $_[0]{is_timeout} }

1;

__END__

=pod

=head1 NAME

Cassandra::Client::Error::Base

=head1 VERSION

version 0.21

=head1 AUTHOR

Tom van der Woerdt <tvdw@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2023 by Tom van der Woerdt.

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

=cut