-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGH_Exceptions.lua
executable file
·23 lines (12 loc) · 986 Bytes
/
GH_Exceptions.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
local bugReport = "\n\n~*~*~*~*~*~*~*~*~*~* PLEASE FILL A BUG REPORT @ https://github.com/Marsgames/GearHelper/issues *~*~*~*~*~*~*~*~*~*~\n\n"
GHExceptionMissingID = "Invalid or missing id" .. bugReport
GHExceptionInvalidItem = "Unable to build item from tooltip" .. bugReport
GHExceptionInvalidItemLink = "ItemLink is not valid" .. bugReport
GHExceptionNotEquippable = "This item is not equippable" .. bugReport
GHExceptionAlreadyEquipped = "This item is already equipped" .. bugReport
GHExceptionInventoryNotCached = "Inventory haven't been cached" .. bugReport
GHExceptionMissingNoxTemplate = "Nox template is missing" .. bugReport
GHExceptionMissingCustomTemplate = "Custom template is missing" .. bugReport
GHExceptionTemplateIsNil = "Current active template is nil" .. bugReport
GHExceptionParameterIsNotAnArray = "Invalid parameter, an array is expected" .. bugReport
GHExceptionMissingDefaultWeight = "GearHelper.db.profile.defaultWeightForStat is nil" .. bugReport