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

Source Code for Module mobi.mtld.da.exception.invalid_property_name_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 InvalidPropertyNameException(DeviceAtlasException):
18 """ 19 InvalidPropertyNameException is thrown by the API class when there is an 20 attempt to fetch a property that is unknown for the supplied user agent or 21 tree. 22 """ 23 pass
24