-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathERRLOOK.TXT
84 lines (53 loc) · 2.74 KB
/
ERRLOOK.TXT
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
README
Created: 05:30 PM 11/23/2023
Last Updated: 09:30 PM 01/12/2023
Contents:
=========
INTRODUCTION
ERRORS
1.> Error Message "Cannot find or create Gosu Compiler"
2.> Error Message "A bundle at version 0 cannot be rolled
back to version 1. A bundle can only be rolled back to
a version prior to the current version."
3.> Error Message "Command line is too long"
4.> Error Message "Order by column xxx not allowed with this
processor. Only the ID can be present."
5.>
--------------------------------------------------------------------------
INTRODUCTION
Explains diagnostic error and warning messages that are generated by the
Guidewire Gosu compiler and build tools.
--------------------------------------------------------------------------
ERRORS
1. Error Message "Cannot find or create Gosu Compiler":
=======================================================
Occurs on systems that do not support the static uses syntax. If you are running
such a system, qualify all references to static members with the class they came
from. For example, one must say:
var myVar = MyClass.PropertyName // Get a static property value
MyClass.methodName() // Call a static method
--------------------------------------------------------------------------------
2. Error Message "A bundle at version 0 cannot be rolled
back to version 1. A bundle can only be rolled back to a version prior to the
current version.":
========================================================
When adding entity instances to bundles by calling bundle.add(obj), never modify
the original entity reference. To add an entity instance to a bundle, pass the
object reference to the add method, save the return result and only use that
return result, not what you passed to the add method. For example:
obj = bundle.add(obj)
--------------------------------------------------------------------------------
3. Error Message "Command line is too long":
============================================
Occurs after a Guidewire project is opened in IntelliJ IDEA. To fix, reinitialize
the hidden .idea folder by running `gwb cleanIdea` (resets all settings).
--------------------------------------------------------------------------------
4. Error Message "Order by column xxx not allowed with
this processor. Only the ID can be present.":
============================================
Indicates misuse of setChunkingById. From the appropriate Javadoc comment:
This [a call to setChunkingById()] will change the result set to do chunking,
and the most efficient way of doing this is by id. Do not sort the results as
this will add a sort by id. This has no effect on your code (you still just
iterate over the results), but will dramatically improve the performance on
large reult sets.