MBXConfigurationServiceError_Internal.h 794 B

12345678910111213141516171819202122
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxCommon/MBXConfigurationServiceErrorCode_Internal.h>
  4. NS_SWIFT_NAME(ConfigurationServiceError)
  5. __attribute__((visibility ("default")))
  6. @interface MBXConfigurationServiceError : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithCode:(MBXConfigurationServiceErrorCode)code
  12. message:(nonnull NSString *)message;
  13. @property (nonatomic, readonly) MBXConfigurationServiceErrorCode code;
  14. @property (nonatomic, readonly, nonnull, copy) NSString *message;
  15. @end