~kosova/+junk/tuxfamily-twiki

« back to all changes in this revision

Viewing changes to foswiki/lib/TWiki/OopsException.pm

  • Committer: James Michael DuPont
  • Date: 2009-07-18 19:58:49 UTC
  • Revision ID: jamesmikedupont@gmail.com-20090718195849-vgbmaht2ys791uo2
added foswiki

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package TWiki::OopsException;
 
2
use base 'Foswiki::OopsException';
 
3
 
 
4
sub new {
 
5
    my $class = shift;
 
6
    return $class->SUPER::new(@_);
 
7
}
 
8
 
 
9
1;
 
10