0

Caused by:

java.lang.NumberFormatException: For input string: "9223372036854775808"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
Alexei - check Codidact
  • 22,016
  • 16
  • 145
  • 164
  • 2
    Do you really mean that this is enough to get help? – Sven R. Mar 11 '16 at 12:41
  • What else should i add? – Toheed Ahsan Butt Mar 11 '16 at 12:54
  • 1
    @ToheedAhsanButt Your question suggests some correlation with Sonar, but you don't explain what you were trying to achieve and what your actions caused the error. – MJar Mar 11 '16 at 13:18
  • 1
    The current state of your question make it impossible to answer because the stacktrace is way too short to determine where the issue might be happening: please precise what you are trying to do and provide a complete stacktrace. And, obviously : What is your question ? – benzonico Mar 11 '16 at 13:55
  • 1
    oh and obviously version of the java plugin of Sonarqube and version of sonarqube would help. – benzonico Mar 11 '16 at 14:00

1 Answers1

2

It looks like an overflow error:

Max long value: 9,223,372,036,854,775,807
Your string:    9,223,372,036,854,775,808

Note: it seems that in Java discriminating between invalid format and overflow is not trivial, as pointed out here.

Community
  • 1
  • 1
Alexei - check Codidact
  • 22,016
  • 16
  • 145
  • 164