]> wagnertech.de Git - mfinanz.git/blobdiff - SL/Controller/TopQuickSearch/CustomerVendor.pm
Entwürfe: beim Buchen dazugehörigen Entwurf löschen
[mfinanz.git] / SL / Controller / TopQuickSearch / CustomerVendor.pm
index 16ab8632fec8df007ab7c68980582f1e8754ce0f..f337d10a1ce0d86456313840f314918b2cd21afb 100644 (file)
@@ -14,11 +14,11 @@ use Rose::Object::MakeMethods::Generic (
 # nope. this is only for subclassing
 sub auth { 'NOT ALLOWED' }
 
-sub name { ... }
+sub name { die 'must be overwritten' }
 
-sub description_config { ... }
+sub description_config { die 'must be overwritten' }
 
-sub description_field { ... }
+sub description_field { die 'must be overwritten' }
 
 sub query_autocomplete {
   my ($self) = @_;
@@ -98,15 +98,15 @@ sub init_models {
 }
 
 sub type {
-  ...
+  die 'must be overwritten'
 }
 
 sub cv {
-  ...
+  die 'must be overwritten'
 }
 
 sub model {
-  ...
+  die 'must be overwritten'
 };
 
 1;