aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/base/idstringexception.h
blob: b269a07241d8b9f6fde12c474fced3a8a71e3129 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/vespalib/util/exception.h>

namespace document {

/**
 * \class document::IdParseException
 * \ingroup base
 *
 * \brief Exception used to indicate failure to parse a %document identifier
 * URI.
 */

VESPA_DEFINE_EXCEPTION(IdParseException, vespalib::Exception);

}