diff options
Diffstat (limited to 'application/models/BootMenuEntries.php')
| -rw-r--r-- | application/models/BootMenuEntries.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/models/BootMenuEntries.php b/application/models/BootMenuEntries.php index 4ae24eb..0d2b5cd 100644 --- a/application/models/BootMenuEntries.php +++ b/application/models/BootMenuEntries.php @@ -13,7 +13,7 @@ class Application_Model_BootMenuEntries { $method = 'set' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootmenuentries property'); } $this->$method($value); } @@ -22,7 +22,7 @@ class Application_Model_BootMenuEntries { $method = 'get' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootmenuentries property'); } return $this->$method(); } |
