The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package RWDE::DB::Immutable;



use strict;
use warnings;

sub update_record {
  my ($self, $params) = @_;

  return throw RWDE::DevelException({ info => 'You may not modify or update immutable records through the API' . $self  });
}

sub create_record {
  my ($self, $params) = @_;

  return throw RWDE::DevelException({ info => 'You may not modify or update immutable records through the API' . $self });
}

1;