zworld-em/Plugins/sentry-unreal/Source/ThirdParty/Mac/include/Sentry/SentryException.h

60 lines
1.3 KiB
C
Raw Permalink Normal View History

2025-05-11 22:07:21 +08:00
#import <Foundation/Foundation.h>
#if __has_include(<Sentry/Sentry.h>)
# import <Sentry/SentryDefines.h>
# import <Sentry/SentrySerializable.h>
#else
# import <SentryWithoutUIKit/SentryDefines.h>
# import <SentryWithoutUIKit/SentrySerializable.h>
#endif
NS_ASSUME_NONNULL_BEGIN
@class SentryStacktrace, SentryMechanism;
NS_SWIFT_NAME(Exception)
@interface SentryException : NSObject <SentrySerializable>
SENTRY_NO_INIT
/**
* The name of the exception
*/
@property (nonatomic, copy) NSString *value;
/**
* Type of the exception
*/
@property (nonatomic, copy) NSString *type;
/**
* Additional information about the exception
*/
@property (nonatomic, strong) SentryMechanism *_Nullable mechanism;
/**
* Can be set to define the module
*/
@property (nonatomic, copy) NSString *_Nullable module;
/**
* An optional value which refers to a thread in @c SentryEvent.threads
*/
@property (nonatomic, copy) NSNumber *_Nullable threadId;
/**
* Stacktrace containing frames of this exception.
*/
@property (nonatomic, strong) SentryStacktrace *_Nullable stacktrace;
/**
* Initialize an SentryException with value and type
* @param value String
* @param type String
* @return SentryException
*/
- (instancetype)initWithValue:(NSString *)value type:(NSString *)type;
@end
NS_ASSUME_NONNULL_END