The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Aug 17 2006 <leonerd@leonerd.org.uk> (Paul Evans)

  Error.pm #0.17002
  - Documentation fix for Error::Simple constructor in example
  - t/80warndie.t: Bugfix to open() call to work on perl 5.6

Jul 24 2006 <leonerd@leonerd.org.uk> (Paul Evans)

  Error.pm #0.17001
  - Bugfix to t/08warndie.t - Don't abuse $! for forcing "die"'s exit status
    Fixes http://rt.cpan.org/Public/Bug/Display.html?id=20549

Jul 13 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.17
  - Added some examples to the examples/ directory.
  - Updated the MANIFEST.

Jul 13 2006 <leonerd@leonerd.org.uk> (Paul Evans)

  Error.pm #0.16001
  - Added the :warndie tag and the internal Error::WarnDie package that
    provides custom __WARN__ and __DIE__ handlers.

Apr 24 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.16
  - Bumped the version number to indicate a new number with no known
    bugs.

Apr 24 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.15009
  - Added the flush() method from Alasdair Allan.

Apr 07 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.15008
  - Fixed a test in t/05text-errors-with-file-handles.t to work on 
    MS Windows due to File::Spec and require inconsistency.

Apr 07 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.15007
  - Fixed https://rt.cpan.org/Ticket/Display.html?id=3291

Apr 07 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.15006
  - According to https://rt.cpan.org/Ticket/Display.html?id=6130 - made
    the auto-conversion of textual errors to object customizable.

Apr 03 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.15005
  - Fixed the conversion of textual messages to Error::Simple when
    they contain information about an open filehandle. (as reported in
    http://rt.cpan.org/Ticket/Display.html?id=6130 )

Apr 02 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.15004
  - Added POD to the lib/Error/Simple.pm module.

Mar 31 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  Error.pm #0.15003
  - Added the lib/Error/Simple.pm module (that just "use"'s Error) so
    one can say "use base 'Error::Simple';' Added an appropriate test. 
    Fixes: http://rt.cpan.org/Public/Bug/Display.html?id=17841

Mar 30 2006 <shlomif@iglu.org.il> (Shlomi Fish)

  - Added Scalar::Util to the dependencies in Makefile.PL.

  Error.pm #0.15002
  - Fixed http://rt.cpan.org/Public/Bug/Display.html?id=18024 and a related
  exception thrown because ->isa was called on something that was not
  certainly an object.

  Error.pm #0.15001

  - Moved Error.pm inside the distribution to reside under lib/.

Oct 9 2001 <u_arunkumar@yahoo.com> (Arun Kumar U)

  Error.pm #0.15

  - Removed the run_clauses calls from the stack trace

May 12 2001 <u_arunkumar@yahoo.com> (Arun Kumar U)

  Error.pm #0.14

  - Added overloading method for 'bool'. This was neccessary so that
    examining the value of $@ after a eval block, returns a true  
    value
  - Applied the diffs from Graham's code base
  - Changed README with more information about the module

Change 436 on 2000/03/29 by <gbarr@pobox.com> (Graham Barr)

  Added ppd stuff to MANIFEST and Makefile.PL

Change 435 on 2000/03/29 by <gbarr@pobox.com> (Graham Barr)

  Changed README to contain examples from the POD

Change 434 on 2000/03/29 by <gbarr@pobox.com> (Graham Barr)

  Documentation updates
  removed experimental warning, too many users now to change too much.

Change 422 on 2000/03/28 by <gbarr@pobox.com> (Graham Barr)

  Some tidy-ups

Change 145 on 1998/05/31 by <gbarr@pobox.com> (Graham Barr)

  Errno.pm
  - Separated run_clauses out into a sub

Oct 28 1997 <gbarr@pobox.com>

  Error.pm #0.12

  - Removed proceed clause

Oct 27 1997 <gbarr@pobox.com>

  Error.pm #0.11

  - Fixed calling of otherwise clause if there are no catch claues

Oct 21 1997 <gbarr@pobox.com>

  Error.pm #0.10

  - Added proceed clause, the return value from the proceed block
    will be returned by throw.
  - try will now return the result from the try block
    or from the catch
  - Changed except clause handling so that block is only evaluated
    once, the first time the result is required.
  - Changed catch and proceed blocks to accept two arguments. The
    second argument is a reference to a scalar, which if set to true
    will cause Error to continue looking for a catch/proceed block
    when the block returns.

Oct 19 1997 <gbarr@pobox.com>

  - Added associate method so that an existing error may be associated
    with an object.

Oct 10 1997 <gbarr@pobox.com>

  - Initial release for private viewing