DEPRECATED: Diffusion iOS Classic API  5.9.4
 All Data Structures Files Functions Variables Enumerations Enumerator Properties Macros Pages
DFException.h
1 /*
2  * DiffusionException.h
3  * Created by dhudson on 22/06/2009 - Diffusion 5.9.4_01
4  * Copyright 2009 Push Technology Ltd. All rights reserved.
5  */
6 #include "DFCommon.h"
7 
8 /**
9  A Diffusion specific exception class.
10  */
11 @interface DFException : NSException
12 
13 /*
14  Initialiase a DFException object
15  @param message String content of the exception
16  @return An initialiased DFException object
17  */
18 -(id) initWithMessage: (NSString*) message;
19 
20 
21 @end