aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/exception.cpp
blob: 6001213cf15d269e22376e072d3a1afa99a3c136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/** ---------------------------------------------------------------------------
 * -*- c++ -*-
 * @file: exception.cpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
 * MIT License, see LICENSE file for more details.
 * ----------------------------------------------------------------------------
 */

#include "exception.h"

namespace yage
{

FileLoadException::FileLoadException(std::string err)
    : std::runtime_error("File Load Exception")
{
    std::ostringstream msg("");

    msg << runtime_error::what() << ": " << err;

    err_msg = msg.str();
}

const char *FileLoadException::what() const throw()
{
    return err_msg.c_str();
}

} // namespace yage