1package Dancer::Continuation;
2our $AUTHORITY = 'cpan:SUKRIA';
3# ABSTRACT: Continuation exception (internal exception) for Dancer
4$Dancer::Continuation::VERSION = '1.3513';
5use strict;
6use warnings;
7use Carp;
8
9sub new {
10    my $class = shift;
11    bless { @_ }, $class;
12}
13
14sub throw { die shift }
15
16sub rethrow { die shift }
17
181;
19
20__END__
21
22=pod
23
24=encoding UTF-8
25
26=head1 NAME
27
28Dancer::Continuation - Continuation exception (internal exception) for Dancer
29
30=head1 VERSION
31
32version 1.3513
33
34=head1 AUTHOR
35
36Dancer Core Developers
37
38=head1 COPYRIGHT AND LICENSE
39
40This software is copyright (c) 2010 by Alexis Sukrieh.
41
42This is free software; you can redistribute it and/or modify it under
43the same terms as the Perl 5 programming language system itself.
44
45=cut
46