add error attribute
Justin Hunter [Sat, 3 Oct 2009 04:49:11 +0000 (21:49 -0700)]
lib/SQL/Translator/Object.pm

index fcab281..7b48760 100644 (file)
@@ -40,6 +40,11 @@ class SQL::Translator::Object with SQL::Translator::Object::Compat {
         default => sub { {} },
     );
 
+    has 'error' => (
+        is => 'rw',
+        isa => Str
+    );
+
     multi method comments(Str $comment) { $self->add_comment($comment); $self->comments }
     multi method comments(ArrayRef $comments) { $self->add_comment($_) for @$comments; $self->comments }
     multi method comments(Any $) { wantarray ? $self->_comments : join "\n", $self->_comments }