feifeifeiliu's picture
Upload 97 files
faeda5e
raw
history blame
281 Bytes
# Copyright (c) 2017 Max Planck Society. All rights reserved.
"""
Error heirarchy for Mesh class
"""
class MeshError(Exception):
"""Base error class for Mesh-related errors"""
pass
class SerializationError(MeshError):
"""Mesh reading or writing errors"""
pass