Revision 2329b45d
Von Bernd Bleßmann vor fast 4 Jahren hinzugefügt
SL/File/Backend/Filesystem.pm | ||
---|---|---|
109 | 109 |
my ($self, %params) = @_; |
110 | 110 |
die "no dbfile" unless $params{dbfile}; |
111 | 111 |
my $path = $self->_filesystem_path($params{dbfile},$params{version}); |
112 |
die "no file in backend get_filepath" if !-f $path; |
|
112 |
|
|
113 |
die "No file found at $path. Expected: $params{dbfile}{file_name}, file.id: $params{dbfile}{id}" if !-f $path; |
|
114 |
|
|
113 | 115 |
return $path; |
114 | 116 |
} |
115 | 117 |
|
Auch abrufbar als: Unified diff
Dateimanagement: Fileystem-Backend: aussagekräftigere Fehlermeldung