aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/error.cpp
blob: 5304061f75a594b77309ed6d431fa324bf6114f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/vespalib/util/error.h>
#include <system_error>

namespace vespalib {

vespalib::string
getErrorString(const int osError)
{
    std::error_code ec(osError, std::system_category());
    return ec.message();
}

vespalib::string
getLastErrorString()
{
    return getErrorString(errno);
}

}