Posts Tagged ‘Exception

Common Mistakes in Exception Handling

Exception is disruption to a normal execution flow of a Java (in general any) program. This disruption can be because of a runtime problem e.g. data problem, initialization problem, etc. or because of a failing business condition. Java is capable of handling all such undesired scenarios elegantly. But when it comes to a developer to use these java generated exceptions to provide enough information to different stakeholders, then few mistakes occur.

Java

Escaping Special Characters with JiBX (Un) Marshalling

Fixing JiBX unmarshalling exception in Spring Web Services. Exception is occurred due to special characters in data.

Tech Notes