Skip to main content

Common Errors

Error CodeMessageExplanation and resolution
E1000Cannot activate instrumentation! Custom tracepoints will not be supported!
E1001Custom tracepoints are not supported on classes loaded by bootstrap classloader
E1002Cannot find classThe class you attempted to put a tracepoint on is not found on the target application instance.You might need to adjust application filters on the main toolwindow to filter out irrelevant applications.
E1003No method at the lineA tracepoint can be put only on a line inside a method body. Try to put on a different line.
E1004Tracepoint already existsA tracepoint is already created on that line, but it might not be shown as a gutter icon yet since the status callback is not received from the server yet. This error might happen only for a very short time if you modify tracepoints quickly because of the asynchronous nature of the communication between the client and server.
E1005No such line numberYou attempted to put a tracepoint on a line that is not found on the server-side. You might be looking to a version of the source code that is different than the one deployed to the server.
E1006No such tracepointYou attempted to remove or modify a tracepoint that is already removed. This might happen because of expiration, or async nature of the server-client communication.
E1050Cannot put tracepointYou attempted to put a tracepoint, but an unexpected error occurred. Try again later.
E1051Source code mismatchThe source code that is bundled to the deployment artifact is not the same with the version you have. Either you modified the code locally, or simply you don’t have the deployed version.
E1100Cannot update tracepointThis might be temporary. Try again later.
E1150Cannot remove tracepointThis might be temporary. Try again later.
E1200Cannot enable tracepointThis might be temporary. Try again later.
E1250Cannot disable tracepointThis might be temporary. Try again later.
E1900Error occurred while checking condition '%s': %sYou attempted to set an erroneous tracepoint condition. Fix the problem as reported in the error detail.
E1901Syntax check failed while checking condition '%s': %sYou wrote a syntactically incorrect tracepoint condition. Check the syntax.
E1902Unable to find metadata of variable %s while checking conditionA variable name you used in the condition couldn’t be found among the local variables and method arguments. If you attempted to use a class member field, it won’t work. You should check the variable names in the condition, and use only local variables and method arguments.
E1903Unable to find type of variable %s while checking conditionThe type of the variable used in the condition couldn’t be inferred.
E1904Unable to find property over class %s while evaluating condition: %sA property used in the condition is not found in the specified path such as user.address.city. Check the namings.
E1905Unable to get property over class %s while evaluating condition: %sThe value of a property used in the condition couldn’t be obtained. This might be because of security checks. Read the error details.
E1906Unknown placeholder detected while checking condition: %sA placeholder used in the condition is not supported.