diff --git a/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala b/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala index 2cc10635..caa970c4 100644 --- a/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala +++ b/s2core/src/main/scala/org/apache/s2graph/core/GraphExceptions.scala @@ -20,10 +20,10 @@ package org.apache.s2graph.core object GraphExceptions { - var fillStckTrace = true + var fillStackTrace = true class BaseException(msg : String) extends Exception(msg){ override def fillInStackTrace : Exception = { - if(fillStckTrace) super.fillInStackTrace() + if(fillStackTrace) super.fillInStackTrace() this } }