#********************************************************************* #*** ResourcePool::Command::NoFailoverException #*** Copyright (c) 2002-2005 by Markus Winand #*** $Id: NoFailoverException.pm,v 1.3.2.3 2005/01/05 19:43:35 mws Exp $ #********************************************************************* package ResourcePool::Command::NoFailoverException; use strict; use vars qw($VERSION); use ResourcePool::Command::Exception; $VERSION = "1.0104"; sub new($;$) { my $proto = shift; my $class = ref($proto) || $proto; my $self = {}; bless($self, $class); $self->{exception} = shift; return $self; } sub rootException($) { my ($self) = @_; return ResourcePool::Command::Exception::rootException($self); } 1;