From: Debayan Sutradhar Date: Wed, 02 Jun 2021 21:14:59 +0530 Subject: Title and Message of every exception is null --- Title and Message of every exception is null --- --- 'a/src/main/java/com/stream_pi/util/exception/StreamPiException.java' +++ b/src/main/java/com/stream_pi/util/exception/StreamPiException.java @@ -18,8 +18,8 @@ package com.stream_pi.util.exception; public class StreamPiException extends Exception { - private String title; - private String message; + private String title = null; + private String message = null; public StreamPiException(String message) {