/* * Entity - Entity is an object-relational mapping tool for the D programming language. Referring to the design idea of JPA. * * Copyright (C) 2015-2018 Shanghai Putao Technology Co., Ltd * * Developer: HuntLabs.cn * * Licensed under the Apache-2.0 License. * */ module hunt.entity.EntityException; public import std.exception; class EntityException : Exception { this(string msg, string file = __FILE__, size_t line = __LINE__) { super(msg, file, line); } }