| Apache2-REST documentation | Contained in the Apache2-REST distribution. |
| Apache2-REST documentation | Contained in the Apache2-REST distribution. |
package Apache2::REST::ErrorOutputHandler ; use strict ; sub new{ my ($class) = @_ ; my $self = {} ; return bless $self , $class ; }
sub handle{ my ( $self , $error , $response , $request ) = @_ ; die "Implement this\n" ; } 1;