Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/src/java.base/share/native/libjli/emessages.h
67739 views
1
/*
2
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
/*
27
* This file primarily consists of all the error and warning messages, that
28
* are used in JLI_ReportErrorMessage. All message must be defined here, in
29
* order to help with localizing the messages.
30
*/
31
32
#ifndef _EMESSAGES_H
33
#define _EMESSAGES_H
34
35
#define GEN_ERROR "Error: A fatal exception has occurred. Program will exit."
36
#define JNI_ERROR "Error: A JNI error has occurred, please check your installation and try again"
37
#define JNI_ERROR1 "Error: can't find JNI interfaces in: %s"
38
39
#define ARG_INFO_ENVVAR "NOTE: Picked up %s: %s"
40
#define ARG_WARN "Warning: %s option is no longer supported."
41
#define ARG_DEPRECATED "Warning: %s option is deprecated and may be removed in a future release."
42
43
#define ARG_ERROR1 "Error: %s requires class path specification"
44
#define ARG_ERROR2 "Error: %s requires jar file specification"
45
#define ARG_ERROR3 "Error: The -J option should not be followed by a space."
46
#define ARG_ERROR4 "Error: %s requires module path specification"
47
#define ARG_ERROR5 "Error: %s requires module name"
48
#define ARG_ERROR6 "Error: %s requires modules to be specified"
49
#define ARG_ERROR7 "Error: %s can only be specified once"
50
#define ARG_ERROR8 "Error: Unmatched quote in environment variable %s"
51
#define ARG_ERROR9 "Error: Option %s is not allowed in environment variable %s"
52
#define ARG_ERROR10 "Error: Option %s in %s is not allowed in environment variable %s"
53
#define ARG_ERROR11 "Error: Cannot specify main class in environment variable %s"
54
#define ARG_ERROR12 "Error: %s requires module name"
55
#define ARG_ERROR13 "Error: %s requires source version"
56
#define ARG_ERROR14 "Error: Option %s is not allowed with --source"
57
#define ARG_ERROR15 "Error: Option %s is not allowed in this context"
58
#define ARG_ERROR16 "Error: Option %s in %s is not allowed in this context"
59
#define ARG_ERROR17 "Error: Cannot specify main class in this context"
60
61
#define JVM_ERROR1 "Error: Could not create the Java Virtual Machine.\n" GEN_ERROR
62
#define JVM_ERROR2 "Error: Could not detach main thread.\n" JNI_ERROR
63
64
#define JAR_ERROR1 "Error: Failed to load Main-Class manifest attribute from\n%s\n%s"
65
#define JAR_ERROR2 "Error: Unable to access jarfile %s"
66
#define JAR_ERROR3 "Error: Invalid or corrupt jarfile %s"
67
68
#define CLS_ERROR1 "Error: Could not find the main class %s.\n" JNI_ERROR
69
#define CLS_ERROR2 "Error: Failed to load Main Class: %s\n%s"
70
#define CLS_ERROR3 "Error: No main method found in specified class.\n" GEN_ERROR
71
#define CLS_ERROR4 "Error: Main method not public\n" GEN_ERROR
72
#define CLS_ERROR5 "Error: main-class: attribute exceeds system limits of %d bytes\n" GEN_ERROR
73
74
#define CFG_WARN1 "Warning: %s VM not supported; %s VM will be used"
75
#define CFG_WARN2 "Warning: No leading - on line %d of `%s'"
76
#define CFG_WARN3 "Warning: Missing VM type on line %d of `%s'"
77
#define CFG_WARN4 "Warning: Missing server class VM on line %d of `%s'"
78
#define CFG_WARN5 "Warning: Unknown VM type on line %d of `%s'"
79
80
#define CFG_ERROR1 "Error: Corrupt jvm.cfg file; cycle in alias list."
81
#define CFG_ERROR2 "Error: Unable to resolve VM alias %s"
82
#define CFG_ERROR3 "Error: %s VM not supported"
83
#define CFG_ERROR4 "Error: Unable to locate JRE meeting specification \"%s\""
84
#define CFG_ERROR5 "Error: Could not determine application home."
85
#define CFG_ERROR6 "Error: could not open `%s'"
86
#define CFG_ERROR7 "Error: no known VMs. (check for corrupt jvm.cfg file)"
87
#define CFG_ERROR8 "Error: missing `%s' JVM at `%s'.\nPlease install or use the JRE or JDK that contains these missing components."
88
#define CFG_ERROR9 "Error: could not determine JVM type."
89
#define CFG_ERROR10 "Error: Argument file size should not be larger than %lu."
90
91
#define JRE_ERROR1 "Error: Could not find Java SE Runtime Environment."
92
#define JRE_ERROR2 "Error: This Java instance does not support a %d-bit JVM.\nPlease install the desired version."
93
#define JRE_ERROR3 "Error: Improper value at line %d."
94
#define JRE_ERROR4 "Error: trying to exec %s.\nCheck if file exists and permissions are set correctly."
95
#define JRE_ERROR5 "Error: Failed to start a %d-bit JVM process from a %d-bit JVM."
96
#define JRE_ERROR6 "Error: Verify all necessary Java SE components have been installed."
97
#define JRE_ERROR7 "Error: Either 64-bit processes are not supported by this platform\nor the 64-bit components have not been installed."
98
#define JRE_ERROR8 "Error: could not find "
99
#define JRE_ERROR9 "Error: Unable to resolve %s"
100
#define JRE_ERROR10 "Error: Unable to resolve current executable"
101
#define JRE_ERROR11 "Error: Path length exceeds maximum length (PATH_MAX)"
102
#define JRE_ERROR12 "Error: Exec of %s failed"
103
#define JRE_ERROR13 "Error: String processing operation failed"
104
105
#define SPC_ERROR1 "Error: Specifying an alternate JDK/JRE version is no longer supported.\n The use of the flag '-version:' is no longer valid.\n Please download and execute the appropriate version."
106
#define SPC_ERROR2 "Error: Specifying an alternate JDK/JRE is no longer supported.\n The related flags -jre-restrict-search | -jre-no-restrict-search are also no longer valid."
107
108
#define DLL_ERROR1 "Error: dl failure on line %d"
109
#define DLL_ERROR2 "Error: failed %s, because %s"
110
#define DLL_ERROR3 "Error: could not find executable %s"
111
#define DLL_ERROR4 "Error: loading: %s"
112
113
#define REG_ERROR1 "Error: opening registry key '%s'"
114
#define REG_ERROR2 "Error: Failed reading value of registry key:\n\t%s\\CurrentVersion"
115
#define REG_ERROR3 "Error: Registry key '%s'\\CurrentVersion'\nhas value '%s', but '%s' is required."
116
#define REG_ERROR4 "Failed reading value of registry key:\n\t%s\\%s\\JavaHome"
117
118
#define SYS_ERROR1 "Error: CreateProcess(%s, ...) failed:"
119
#define SYS_ERROR2 "Error: WaitForSingleObject() failed."
120
121
122
123
#endif /* _EMESSAGES_H */
124
125