The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Tangram::Schema::ClassHash;
use strict;

use strict;
use Carp;

# XXX - not reached by test suite
sub class
{
   my ($self, $class) = @_;
   $self->{$class} or croak "unknown class '$class'";
}

1;