Changeset 90
- Timestamp:
- 01/17/07 23:44:48 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/experiments/people/mikey/star/StarConsole.php
r86 r90 118 118 if ($this->args->isDefined('ini') == false) { 119 119 if (file_exists('./compile.ini') == false) { 120 throw new StarException('Can not compile: no ini set and no default compile.ini found.' );120 throw new StarException('Can not compile: no ini set and no default compile.ini found.', CONSOLE_GETARGS_ERROR_USER); 121 121 } 122 122 … … 124 124 } else { 125 125 if (file_exists($this->args->getValue('ini')) == false) { 126 throw new StarException('Can not compile: ' . $this->args->getValue('ini') . ' not found.' );126 throw new StarException('Can not compile: ' . $this->args->getValue('ini') . ' not found.', CONSOLE_GETARGS_ERROR_USER); 127 127 } 128 128
