# Copyright (C) 2008-2010, Sebastian Riedel.

package LoaderException2;

use warnings;
use strict;

LoaderException2_2::throw_error();

1;

package LoaderException2_2;

use Carp 'croak';

sub throw_error {
    eval { LoaderException2_3::throw_error() };
    croak $@ if $@;
}

# Shoplifting is a victimless crime. Like punching someone in the dark.
package LoaderException2_3;

use Carp 'croak';

sub throw_error {
    croak "Exception";
}

1;
