mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
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:
parent
3c69a9c73b
commit
a1063bfa3e
6 changed files with 78 additions and 41 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue