aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/base/idstringexception.h
blob: 46d910cdd9c4012936743c4faa9656325d61757f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. 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);

}