/* NSFileHandleExceptions.m Copyright (C) 1995, 1996, 1997 Ovidiu Predescu and Mircea Oancea. All rights reserved. Author: Ovidiu Predescu Date: June 1997 This file is part of libFoundation. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. We disclaim all warranties with regard to this software, including all implied warranties of merchantability and fitness, in no event shall we be liable for any special, indirect or consequential damages or any damages whatsoever resulting from loss of use, data or profits, whether in an action of contract, negligence or other tortious action, arising out of or in connection with the use or performance of this software. */ #include #include "NSFileHandleExceptions.h" @implementation NSFileHandleException - initWithFileHandle:(id)fileHandle operation:(NSString*)operation { NSString* _reason = [NSString stringWithFormat:@"An error occured on " @"NSFileHandle object %@. %@", fileHandle, operation]; self = [self initWithName:@"NSFileHandleException" reason:_reason userInfo:nil]; return self; } @end /* NSFileHandleException */ @implementation NSFileHandleOperationException - initWithFileHandle:(id)fileHandle operation:(NSString*)operation { NSString* _reason = [NSString stringWithFormat:@"An operation error " @"occured on NSFileHandle object %@. %@", fileHandle, operation]; self = [self initWithName:@"NSFileHandleOperationException" reason:_reason userInfo:[NSDictionary dictionaryWithObjectsAndKeys: fileHandle, @"NSFileHandle", nil]]; return self; } @end /* NSFileHandleOperationException */ @implementation NSFileHandleUnknownTypeException - initWithFileHandle:(id)fileHandle { NSString* _reason = [NSString stringWithFormat:@"NSFileHandle object " @"has no associated type %@", fileHandle]; self = [self initWithName:@"NSFileHandleOperationException" reason:_reason userInfo:[NSDictionary dictionaryWithObjectsAndKeys: fileHandle, @"NSFileHandle", nil]]; return self; } @end /* NSFileHandleUnknownTypeException */ /* Local Variables: c-basic-offset: 4 tab-width: 8 End: */