You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticfinalStringNO_I_TEXT7_LICENSE_IS_LOADED_BUT_AN_I_TEXT5_LICENSE_IS_LOADED ="No iText7 License is loaded but an iText5 license is loaded.";
15
+
publicstaticfinalStringTHE_MAJOR_VERSION_OF_THE_LICENSE_0_IS_LOWER_THAN_THE_MAJOR_VERSION_1_OF_THE_CORE_LIBRARY ="The major version of the license ({0}) is lower than the major version ({1}) of the Core library.";
16
+
publicstaticfinalStringTHE_MAJOR_VERSION_OF_THE_LICENSE_0_IS_HIGHER_THAN_THE_MAJOR_VERSION_1_OF_THE_CORE_LIBRARY ="The major version of the license ({0}) is higher than the major version ({1}) of the Core library.";
17
+
18
+
publicstaticfinalStringTHE_MINOR_VERSION_OF_THE_LICENSE_0_IS_LOWER_THAN_THE_MINOR_VERSION_1_OF_THE_CORE_LIBRARY ="The minor version of the license ({0}) is lower than the minor version ({1}) of the Core library.";
19
+
publicstaticfinalStringTHE_MINOR_VERSION_OF_THE_LICENSE_0_IS_HIGHER_THAN_THE_MINOR_VERSION_1_OF_THE_CORE_LIBRARY ="The minor version of the license ({0}) is higher than the minor version ({1}) of the Core library.";
20
+
21
+
publicstaticfinalStringVERSION_STRING_IS_EMPTY_AND_CANNOT_BE_PARSED = "Version string is empty and cannot be parsed.";
22
+
publicstaticfinalStringMAJOR_VERSION_IS_NOT_NUMERIC ="Major version is not numeric";
23
+
publicstaticfinalStringMINOR_VERSION_IS_NOT_NUMERIC ="Minor version is not numeric";
24
+
publicstaticfinalStringUNKNOWN_EXCEPTION_WHEN_CHECKING_LICENSE_VERSION ="Unknown Exception when checking License version";
25
+
26
+
publicstaticfinalStringLICENSE_FILE_NOT_LOADED = "License file not loaded.";
27
+
/**
28
+
* Object for more details
29
+
*/
30
+
protectedObjectobject;
31
+
32
+
privateList<Object> messageParams;
33
+
34
+
/**
35
+
* Creates a new instance of PdfException.
36
+
*
37
+
* @param message the detail message.
38
+
*/
39
+
publicLicenseVersionException(Stringmessage) {
40
+
super(message);
41
+
}
42
+
43
+
/**
44
+
* Creates a new instance of PdfException.
45
+
*
46
+
* @param cause the cause (which is saved for later retrieval by {@link #getCause()} method).
0 commit comments