1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 package net.sourceforge.plantumldependency.cli.constants.log;
26
27
28
29
30
31
32
33
34
35 public final class ErrorConstants {
36
37
38 public static final String BAD_PATTERN_ARGUMENT_ERROR = "[error-plantuml-dependency-cli-000] : Can't parse option argument \"{0}\", it isn't a valid pattern";
39
40
41 public static final String BASE_DIRECTORY_OPTION_NULL_ERROR = "[error-plantuml-dependency-cli-001] : The base directory option is null";
42
43
44 public static final String CPP_NOT_IMPLEMENTED_YET_ERROR = "[error-plantuml-dependency-cli-002] : CPP isn't implemented yet, should come in a next release ;-)";
45
46
47 public static final String DEPENDENCY_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-003] : The dependency name is null";
48
49
50 public static final String DEPENDENCY_NULL_ERROR = "[error-plantuml-dependency-cli-004] : The dependency is null";
51
52
53 public static final String DEPENDENCY_TYPE_NULL_ERROR = "[error-plantuml-dependency-cli-005] : The dependency type is null";
54
55
56 public static final String DISPLAY_NAME_OPTION_NULL_ERROR = "[error-plantuml-dependency-cli-006] : The display name option is null";
57
58
59 public static final String DISPLAY_PACKAGE_NAME_OPTION_NULL_ERROR = "[error-plantuml-dependency-cli-007] : The display package name option is null";
60
61
62 public static final String DISPLAY_TYPE_OPTION_NULL_ERROR = "[error-plantuml-dependency-cli-008] : The display type option is null";
63
64
65 public static final String EXCLUDE_OPTION_NULL_ERROR = "[error-plantuml-dependency-cli-009] : The exclude option is null";
66
67
68 public static final String IMPOSSIBLE_JAVA_PARENT_TYPE_NULL_ERROR = "[error-plantuml-dependency-cli-010] : The java parent type \"{0}\" is not available for this java type \"{1}\"";
69
70
71 public static final String INCLUDE_OPTION_NULL_ERROR = "[error-plantuml-dependency-cli-011] : The include option is null";
72
73
74 public static final String JAVA_ANNOTATION_TYPE_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-012] : The java annotation type name is null";
75
76
77 public static final String JAVA_ANNOTATION_TYPE_PACKAGE_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-013] : The java annotation type package name is null";
78
79
80 public static final String JAVA_PARENT_TYPE_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-014] : The java parent type name is null";
81
82
83 public static final String JAVA_PARENT_TYPE_NULL_ERROR = "[error-plantuml-dependency-cli-015] : The java parent type is null";
84
85
86 public static final String JAVA_PARENT_TYPE_PACKAGE_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-016] : The java parent type package name is null";
87
88
89 public static final String JAVA_PARENT_TYPE_STRING_NOT_EMPTY_NULL_ERROR = "[error-plantuml-dependency-cli-017] : The java parent type string \"{0}\" should be null for this java type \"{1}\"";
90
91
92 public static final String JAVA_PARENT_TYPE_UNKNOWN_ERROR = "[error-plantuml-dependency-cli-018] : The java parent type \"{0}\" is unknown";
93
94
95 public static final String JAVA_TYPE_ANNOTATIONS_NULL_ERROR = "[error-plantuml-dependency-cli-019] : The java type annotations dependencies is null";
96
97
98 public static final String JAVA_TYPE_CANT_BE_EXTRACTED_ERROR = "[error-plantuml-dependency-cli-020] : The java type can't be extracted from the content \"{0}\"";
99
100
101 public static final String JAVA_TYPE_EXTENTIONS_NULL_ERROR = "[error-plantuml-dependency-cli-021] : The java type extensions dependencies is null";
102
103
104 public static final String JAVA_TYPE_EXTENTIONS_TOO_MANY_ELEMENTS_ERROR = "[error-plantuml-dependency-cli-022] : The java type extensions dependencies has too many elements";
105
106
107 public static final String JAVA_TYPE_IMPLEMENTATIONS_NULL_ERROR = "[error-plantuml-dependency-cli-023] : The java type implementations dependencies is null";
108
109
110 public static final String JAVA_TYPE_IMPORTS_NULL_ERROR = "[error-plantuml-dependency-cli-024] : The java type import dependencies is null";
111
112
113 public static final String JAVA_TYPE_LANGUAGE_KEYWORD_NULL_ERROR = "[error-plantuml-dependency-cli-025] : The java type language keyword is null";
114
115
116 public static final String JAVA_TYPE_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-026] : The java type name is null";
117
118
119 public static final String JAVA_TYPE_PACKAGE_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-027] : The java type package name is null";
120
121
122 public static final String NOT_DISPLAY_TYPE_ARGUMENT_ERROR = "[error-plantuml-dependency-cli-028] : Can't parse option argument \"{0}\", it isn't a valid display type argument";
123
124
125 public static final String PLANTUML_DEPENDENCY_ERROR = "[error-plantuml-dependency-cli-029] : An error has occured while running PlantUML Dependency, please check the log for more information";
126
127
128 public static final String PROGRAMMING_LANGUAGE_NAME_NULL_ERROR = "[error-plantuml-dependency-cli-030] : The programming language name is null";
129
130
131 public static final String PROGRAMMING_LANGUAGE_OPTION_NULL_ERROR = "[error-plantuml-dependency-cli-031] : The programming language option is null";
132
133
134 public static final String READING_SOURCE_FILE_ERROR = "[error-plantuml-dependency-cli-032] : Severe parsing errors have occurred while reading the source file \"{0}\", the file will be ignored";
135
136
137 public static final String SEVERAL_DISPLAY_TYPE_ARGUMENTS_ERROR = "[error-plantuml-dependency-cli-033] : The display type argument \"{0}\" is defined several times";
138
139
140 public static final String UNKNOWN_JAVA_TYPE_ERROR = "[error-plantuml-dependency-cli-034] : The java type \"{0}\" is unknown";
141
142
143 public static final String UNKNOWN_PROGRAMMING_LANGUAGE_ERROR = "[error-plantuml-dependency-cli-035] : The programming language \"{0}\" is unknown";
144
145
146
147
148
149
150 private ErrorConstants() {
151 super();
152 }
153 }