mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
* Source/NSException.m: Add NSObjectNotAvailableException.
* Headers/Foundation/NSException.h: Ditto. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26322 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
aa884e1a44
commit
3c69a9c73b
3 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-03-16 Matt Rice <ratmice@gmail.com>
|
||||
|
||||
* Source/NSException.m: Add NSObjectNotAvailableException.
|
||||
* Headers/Foundation/NSException.h: Ditto.
|
||||
|
||||
2008-03-16 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSDebug.m: Trap sigbus if gcc functions to get stack frame
|
||||
|
|
|
@ -199,6 +199,8 @@ GS_EXPORT NSString* const NSCharacterConversionException;
|
|||
*/
|
||||
GS_EXPORT NSString* const NSObjectInaccessibleException;
|
||||
|
||||
GS_EXPORT NSString* const NSObjectNotAvailableException;
|
||||
|
||||
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
||||
/**
|
||||
* An exception used when some form of parsing fails.
|
||||
|
|
|
@ -113,6 +113,8 @@ NSString * const NSFailedAuthenticationException =
|
|||
@"NSFailedAuthenticationExceptions";
|
||||
NSString * const NSObjectInaccessibleException =
|
||||
@"NSObjectInaccessibleException";
|
||||
NSString * const NSObjectNotAvailableException =
|
||||
@"NSObjectNotAvailableException";
|
||||
|
||||
/*
|
||||
* Set up a type to permit us to have direct access into an NSDistantObject
|
||||
|
|
Loading…
Reference in a new issue