public static NotSerializableException newNotSerializableException(String message, Throwable cause){
return initCause(new NotSerializableException(message), cause);
}
public static NotSerializableException newNotSerializableException(Throwable cause){
return initCause(new NotSerializableException(), cause);
}