Code cleanups, deprecated classes renamed
[core.git] / inc / classes / main / io / class_FrameworkFileOutputPointer.php
index bc69bea5ea240eb053a29c4ae0b60666cfdb2414..c542ad3293253ece07b2314ac60309e6a163421c 100644 (file)
@@ -61,8 +61,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem {
         * @param       $fileName       The file name we shall pass to fopen()
         * @param       $mode           The output mode ('w', 'a' are valid)
         * @throws      FileIsEmptyException    If the provided file name is empty.
-        * @throws      FilePointerNotOpened    If fopen() returns not a file
-        *                                                                      resource
+        * @throws      FileIoException         If fopen() returns not a file resource
         * @return      void
         */
        public final static function createFrameworkFileOutputPointer ($fileName, $mode) {
@@ -70,14 +69,14 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem {
                if (is_null($fileName)) {
                        // No filename given
                        throw new FileIsEmptyException(null, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
-               }
+               } // END - if
 
                // Try to open a handler
                $filePointer = @fopen($fileName, $mode);
                if (($filePointer === null) || ($filePointer === false)) {
                        // Something bad happend
-                       throw new FilePointerNotOpenedException ($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
-               }
+                       throw new FileIoException ($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
+               } // END - if
 
                // Create new instance
                $pointerInstance = new FrameworkFileOutputPointer();