Java compiler errors
As with any regular Java program, there may be compile-time errors in your coding. Jupyter Java provides similar feedback, with line numbers corresponding to the lines in your Notebook.
For example, when I first entered the snippet for an example that we will look at a little later on in this chapter, there were a couple of errors:
![](https://static.packt-cdn.com/products/9781789137408/graphics/00bafcce-ec8c-490d-9f09-520d8b387c41.png)
The first error was attempting to call the sort
function from a static
method. The second error was attempting to use the wrong function name. Both of these errors are typical types of compile errors you may see when developing Java applications.