diff options
Diffstat (limited to 'application/models/BootIso.php')
| -rw-r--r-- | application/models/BootIso.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/models/BootIso.php b/application/models/BootIso.php index a9a88d8..3a411db 100644 --- a/application/models/BootIso.php +++ b/application/models/BootIso.php @@ -21,7 +21,7 @@ class Application_Model_BootIso { $method = 'set' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootiso property'); } $this->$method($value); } @@ -30,7 +30,7 @@ class Application_Model_BootIso { $method = 'get' . $name; if (('mapper' == $name) || !method_exists($this, $method)) { - throw new Exception('Invalid guestbook property'); + throw new Exception('Invalid bootiso property'); } return $this->$method(); } |
