Package mobi :: Package mtld :: Package da :: Package exception :: Module client_properties_exception
[hide private]
[frames] | no frames]

Source Code for Module mobi.mtld.da.exception.client_properties_exception

 1  #!/usr/bin/env python 
 2   
 3  """ 
 4  @copyright: 
 5   Copyright (c) 2014 by mTLD Top Level Domain Limited. All rights reserved.\n 
 6   Portions copyright (c) 2008 by Argo Interactive Limited.\n 
 7   Portions copyright (c) 2008 by Nokia Inc.\n 
 8   Portions copyright (c) 2008 by Telecom Italia Mobile S.p.A.\n 
 9   Portions copyright (c) 2008 by Volantis Systems Limited.\n 
10   Portions copyright (c) 2002-2008 by Andreas Staeding.\n 
11   Portions copyright (c) 2008 by Zandan.\n 
12  @author: dotMobi 
13  """ 
14   
15  from mobi.mtld.da.exception.device_atlas_exception import DeviceAtlasException 
16   
17 -class ClientPropertiesException(DeviceAtlasException):
18 """ 19 The ClientPropertiesException is thrown by the API when there is a problem 20 parsing the properties from the client or when the JSON file does not support 21 client side properties. 22 """ 23 pass
24