# * Rserve client for Perl
# * Supports Rserve protocol 0103 only (used by Rserve 0.5 and higher)
# * Based on rserve-php by Clément TURBELIN
# * @author Djun Kim
# * Licensed under# GPL v2 or at your option v3
# * Statistics::RserveClient::ParserException extends Statistics::RserveClient::Exception
# * @author Djun Kim
#use strict;
#use warnings;
#use autodie;
our $VERSION = 'CPAN-0.08'; #VERSION
our @ISA = qw(Exporter Statistics::RserveClient::Exception); # inherits from Exception
our @EXPORT = qw( new );
sub new {
my $class = shift;
my $self = Statistics::RserveClient::Exception->new();
bless $self, $class;
return $self;
}
1;