Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
/*
|
|
2 |
RawSpeed - RAW file decoder.
|
|
3 |
|
|
4 |
Copyright (C) 2017 Roman Lebedev
|
|
5 |
|
|
6 |
This library is free software; you can redistribute it and/or
|
|
7 |
modify it under the terms of the GNU Lesser General Public
|
|
8 |
License as published by the Free Software Foundation; either
|
|
9 |
version 2 of the License, or (at your option) any later version.
|
|
10 |
|
|
11 |
This library is distributed in the hope that it will be useful,
|
|
12 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
14 |
Lesser General Public License for more details.
|
|
15 |
|
|
16 |
You should have received a copy of the GNU Lesser General Public
|
|
17 |
License along with this library; if not, write to the Free Software
|
|
18 |
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
19 |
*/
|
|
20 |
|
|
21 |
#pragma once
|
|
22 |
|
|
23 |
#include "rawspeedconfig.h" // for RAWSPEED_NOINLINE, RAWSPEED_... |
|
24 |
#include "common/RawspeedException.h" // for ThrowExceptionHelper |
|
25 |
#include "parsers/RawParserException.h" // for RawParserException |
|
26 |
|
|
27 |
namespace rawspeed { |
|
28 |
|
|
29 |
class FiffParserException final : public RawParserException { |
|
30 |
public: |
|
31 |
explicit RAWSPEED_UNLIKELY_FUNCTION RAWSPEED_NOINLINE |
|
32 |
FiffParserException(const char* msg) |
|
33 |
: RawParserException(msg) {} |
|
34 |
};
|
|
35 |
|
|
36 |
#define ThrowFPE(...) \
|
|
37 |
ThrowExceptionHelper(rawspeed::FiffParserException, __VA_ARGS__)
|
|
38 |
|
|
39 |
} // namespace rawspeed |
Read our documentation on viewing source code .