Add exceptions for MacOS-X compatibility.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26325 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-03-17 05:45:55 +00:00
parent 3c69a9c73b
commit a1063bfa3e
6 changed files with 78 additions and 41 deletions

View file

@ -49,11 +49,16 @@
@implementation NSPort
/**
* Exception raised if a timeout occurs during a port send or receive
* operation.
*/
NSString * const NSPortTimeoutException = @"NSPortTimeoutException";
NSString * const NSInvalidReceivePortException
= @"NSInvalidReceivePortException";
NSString * const NSInvalidSendPortException
= @"NSInvalidSendPortException";
NSString * const NSPortReceiveException
= @"NSPortReceiveException";
NSString * const NSPortSendException
= @"NSPortSendException";
NSString * const NSPortTimeoutException
= @"NSPortTimeoutException";
static Class NSPort_abstract_class;
static Class NSPort_concrete_class;