~ubuntu-branches/ubuntu/raring/grilo/raring

« back to all changes in this revision

Viewing changes to src/grl-error.h

  • Committer: Package Import Robot
  • Author(s): Alberto Garcia
  • Date: 2012-10-12 16:42:22 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20121012164222-10mggmipxg83x46v
Tags: upstream-0.2.2
ImportĀ upstreamĀ versionĀ 0.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 *
21
21
 */
22
22
 
23
 
/**
24
 
 * SECTION:grl-error
25
 
 * @short_description: Error system
26
 
 *
27
 
 * This class stores information related to the error system
28
 
 */
29
 
 
30
23
#if !defined (_GRILO_H_INSIDE_) && !defined (GRILO_COMPILATION)
31
24
#error "Only <grilo.h> can be included directly."
32
25
#endif
42
35
 * @GRL_CORE_ERROR_SEARCH_FAILED: The search operation failed
43
36
 * @GRL_CORE_ERROR_SEARCH_NULL_UNSUPPORTED: Searching NULL-text is not supported
44
37
 * @GRL_CORE_ERROR_QUERY_FAILED: The query operation failed
45
 
 * @GRL_CORE_ERROR_METADATA_FAILED: The metadata search failed
46
38
 * @GRL_CORE_ERROR_RESOLVE_FAILED: The resolution operation failed
47
39
 * @GRL_CORE_ERROR_MEDIA_NOT_FOUND: The media was not found
48
40
 * @GRL_CORE_ERROR_STORE_FAILED: The store operation failed
 
41
 * @GRL_CORE_ERROR_STORE_METADATA_FAILED: The store metadata operation failed
49
42
 * @GRL_CORE_ERROR_REMOVE_FAILED: The removal operation failed
50
 
 * @GRL_CORE_ERROR_SET_METADATA_FAILED: The set metadata operation failed
51
43
 * @GRL_CORE_ERROR_MEDIA_FROM_URI_FAILED: The media from_uri operation failed
52
44
 * @GRL_CORE_ERROR_CONFIG_LOAD_FAILED: Failed to load plugin configuration from a file
53
45
 * @GRL_CORE_ERROR_CONFIG_FAILED: Failed to set configuration for plugin
65
57
  GRL_CORE_ERROR_SEARCH_FAILED,
66
58
  GRL_CORE_ERROR_SEARCH_NULL_UNSUPPORTED,
67
59
  GRL_CORE_ERROR_QUERY_FAILED,
68
 
  GRL_CORE_ERROR_METADATA_FAILED,
69
60
  GRL_CORE_ERROR_RESOLVE_FAILED,
70
61
  GRL_CORE_ERROR_MEDIA_NOT_FOUND,
71
62
  GRL_CORE_ERROR_STORE_FAILED,
 
63
  GRL_CORE_ERROR_STORE_METADATA_FAILED,
72
64
  GRL_CORE_ERROR_REMOVE_FAILED,
73
 
  GRL_CORE_ERROR_SET_METADATA_FAILED,
74
65
  GRL_CORE_ERROR_MEDIA_FROM_URI_FAILED,
75
66
  GRL_CORE_ERROR_CONFIG_LOAD_FAILED,
76
67
  GRL_CORE_ERROR_CONFIG_FAILED,