Suppress all traceback information - only the exception type and value are printed.

这个提交包含在:
Craig Warren
2016-12-16 15:54:08 +00:00
父节点 5a2d09c876
当前提交 1ab402d121

查看文件

@@ -16,10 +16,12 @@
# You should have received a copy of the GNU General Public License
# along with gprMax. If not, see <http://www.gnu.org/licenses/>.
import sys
from colorama import init, Fore
init()
sys.tracebacklimit = None
class GeneralError(ValueError):
"""Handles general errors. Subclasses the ValueError class."""