summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLGenericResponse.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLGenericResponse.h')
-rw-r--r--SmartDeviceLink/SDLGenericResponse.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLGenericResponse.h b/SmartDeviceLink/SDLGenericResponse.h
new file mode 100644
index 000000000..4d339fb64
--- /dev/null
+++ b/SmartDeviceLink/SDLGenericResponse.h
@@ -0,0 +1,18 @@
+// SDLGenericResponse.h
+//
+
+
+#import "SDLRPCResponse.h"
+
+/**
+ * Generic Response is sent, when the name of a received msg cannot be
+ * retrieved. Only used in case of an error. Currently, only resultCode
+ * INVALID_DATA is used.
+ */
+@interface SDLGenericResponse : SDLRPCResponse {
+}
+
+- (instancetype)init;
+- (instancetype)initWithDictionary:(NSMutableDictionary *)dict;
+
+@end