File tree Expand file tree Collapse file tree
modules/core/src/main/java/org/apache/ignite/configuration Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -111,13 +111,25 @@ public boolean sendServerExceptionStackTraceToClient() {
111111 /**
112112 * @param sendServerExcStackTraceToClient If {@code true} sends a server exception stack to the client side.
113113 * @return {@code this} for chaining.
114+ * @deprecated Use {@link #setServerToClientExceptionStackTraceSending(boolean)} instead.
114115 */
116+ @ Deprecated
115117 public ThinClientConfiguration sendServerExceptionStackTraceToClient (boolean sendServerExcStackTraceToClient ) {
116118 this .sendServerExcStackTraceToClient = sendServerExcStackTraceToClient ;
117119
118120 return this ;
119121 }
120122
123+ /**
124+ * @param sendStackTrace If {@code true} sends a server exception stack to the client side.
125+ * @return {@code this} for chaining.
126+ */
127+ public ThinClientConfiguration setServerToClientExceptionStackTraceSending (boolean sendStackTrace ) {
128+ sendServerExcStackTraceToClient = sendStackTrace ;
129+
130+ return this ;
131+ }
132+
121133 /** {@inheritDoc} */
122134 @ Override public String toString () {
123135 return S .toString (ThinClientConfiguration .class , this );
You can’t perform that action at this time.
0 commit comments