| Module | Rfm::Error |
| In: |
lib/rfm_error.rb
|
These classes wrap the filemaker error codes. FileMakerError is the base class of this hierarchy.
One could get a FileMakerError by doing:
err = Rfm::Error::FileMakerError.getError(102)
The above code would return a FieldMissingError instance. Your could use this instance to raise that appropriate exception:
raise err
You could access the specific error code by accessing:
err.code
| Author: | Mufaddal Khumri |
| Copyright: | Copyright © 2007 Six Fried Rice, LLC and Mufaddal Khumri |
| License: | See MIT-LICENSE for details |