Skip to content
Snippets Groups Projects
Commit 24d7aa2d authored by Charles Reiss's avatar Charles Reiss
Browse files

Extra whitespace in ExecutorExitCode

parent 829206f1
No related branches found
No related tags found
No related merge requests found
...@@ -12,12 +12,15 @@ private[spark] ...@@ -12,12 +12,15 @@ private[spark]
object ExecutorExitCode { object ExecutorExitCode {
/** The default uncaught exception handler was reached. */ /** The default uncaught exception handler was reached. */
val UNCAUGHT_EXCEPTION = 50 val UNCAUGHT_EXCEPTION = 50
/** The default uncaught exception handler was called and an exception was encountered while /** The default uncaught exception handler was called and an exception was encountered while
logging the exception. */ logging the exception. */
val UNCAUGHT_EXCEPTION_TWICE = 51 val UNCAUGHT_EXCEPTION_TWICE = 51
/** The default uncaught exception handler was reached, and the uncaught exception was an /** The default uncaught exception handler was reached, and the uncaught exception was an
OutOfMemoryError. */ OutOfMemoryError. */
val OOM = 52 val OOM = 52
/** DiskStore failed to create a local temporary directory after many attempts. */ /** DiskStore failed to create a local temporary directory after many attempts. */
val DISK_STORE_FAILED_TO_CREATE_DIR = 53 val DISK_STORE_FAILED_TO_CREATE_DIR = 53
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment