NAME
Audio::Audiere::Error - error messages for Audio::Audiere
SYNOPSIS
use Audio::Audiere;
my $au = Audio::Audiere->new();
my $stream = $au->addStream('non-existant-stream.wav');
if ($stream->error())
{
print "Fatal error: ", $stream->error(),"\n";
}
EXPORTS
Exports nothing.
DESCRIPTION
This package provides error messages for Audio::Audiere. When the creation of an Audio::Audiere
or Audio::Audiere::Stream
object fails, you will get an object of this class back, which only purpose is to store the error message.
The usage should be totally transparent to the user.
AUTHORS
(c) 2004 Tels <http://bloodgate.com/>