// Copyright Yazan Dabain 2014. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) module dwarf.elf; class ELFException : Exception { this(string msg, string file = __FILE__, size_t line = __LINE__) { super(msg, file, line); } } import std.stdio; alias trace = writeln;