karenfeng commented on a change in pull request #31619:
URL: https://github.com/apache/spark/pull/31619#discussion_r591976918
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/execution/QueryExecutionException.scala
##########
@@ -17,5 +17,7 @@
package org.apache.spark.sql.execution
+import org.apache.spark.SparkException
+
class QueryExecutionException(message: String, cause: Throwable = null)
- extends Exception(message, cause)
+ extends SparkException(message, cause)
Review comment:
I moved this to inside `catalyst` so that it would be visible; I don't
think this should be problematic as the package is still the same.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]