Don't overlap simultaneous video content in the timeline. Fix keep-aligned for separ...
[dcpomatic.git] / src / lib / exceptions.cc
1 /*
2     Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "exceptions.h"
21 #include "compose.hpp"
22
23 #include "i18n.h"
24
25 using std::string;
26
27 /** @param f File that we were trying to open */
28 OpenFileError::OpenFileError (boost::filesystem::path f)
29         : FileError (String::compose (_("could not open file %1"), f.string()), f)
30 {
31
32 }
33
34 /** @param f File that we were trying to create */
35 CreateFileError::CreateFileError (boost::filesystem::path f)
36         : FileError (String::compose (_("could not create file %1"), f.string()), f)
37 {
38
39 }
40
41 ReadFileError::ReadFileError (boost::filesystem::path f, int e)
42         : FileError (String::compose (_("could not read from file %1 (%2)"), f.string(), strerror (e)), f)
43 {
44
45 }
46
47 WriteFileError::WriteFileError (boost::filesystem::path f, int e)
48         : FileError (String::compose (_("could not write to file %1 (%2)"), f.string(), strerror (e)), f)
49 {
50         
51 }
52
53 MissingSettingError::MissingSettingError (string s)
54         : SettingError (s, String::compose (_("missing required setting %1"), s))
55 {
56
57 }
58
59 PixelFormatError::PixelFormatError (std::string o, AVPixelFormat f)
60         : StringError (String::compose (_("Cannot handle pixel format %1 during %2"), f, o))
61 {
62
63 }