session-ios/Signal/src/network/failures/UnrecognizedRequestFailure.h
2014-05-06 19:41:08 +02:00

14 lines
312 B
Objective-C

#import <Foundation/Foundation.h>
/**
*
* Instances of UnrecognizedRequestFailure are used to indicate that a request could not be handled due to being strange.
*
*/
@interface UnrecognizedRequestFailure : NSObject {
@private NSString* reason;
}
+(UnrecognizedRequestFailure*) new:(NSString*)reason;
@end