Repository: tika Updated Branches: refs/heads/master aa448a3b7 -> 6c3e5dbb5
TIKA-2226 -- add UnsupportedFormatException Project: http://git-wip-us.apache.org/repos/asf/tika/repo Commit: http://git-wip-us.apache.org/repos/asf/tika/commit/2013d332 Tree: http://git-wip-us.apache.org/repos/asf/tika/tree/2013d332 Diff: http://git-wip-us.apache.org/repos/asf/tika/diff/2013d332 Branch: refs/heads/master Commit: 2013d3322603df058e4ff48b63d615cf977b30ad Parents: d011d70 Author: tballison <[email protected]> Authored: Thu Dec 22 09:14:17 2016 -0500 Committer: tballison <[email protected]> Committed: Thu Dec 22 09:14:17 2016 -0500 ---------------------------------------------------------------------- .../exception/UnsupportedFormatException.java | 39 ++++++++++++++++++++ 1 file changed, 39 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tika/blob/2013d332/tika-core/src/main/java/org/apache/tika/exception/UnsupportedFormatException.java ---------------------------------------------------------------------- diff --git a/tika-core/src/main/java/org/apache/tika/exception/UnsupportedFormatException.java b/tika-core/src/main/java/org/apache/tika/exception/UnsupportedFormatException.java new file mode 100644 index 0000000..4322e64 --- /dev/null +++ b/tika-core/src/main/java/org/apache/tika/exception/UnsupportedFormatException.java @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.tika.exception; + +/** + * Parsers should throw this exception when they encounter + * a file format that they do not support. This should only happen + * when we're not able to differentiate versions by the mime. For example, + * At the time of this writing, "application/wordperfect" covers all versions + * of the wordperfect format; however, the parser only handles 6.x. + * <p/> + * Whenever possible/convenient, it is better to distinguish file formats by mime + * so that unsupported formats will be handled by the + * {@link org.apache.tika.parser.EmptyParser}. + * However, if we can't differentiate by mime or we need to rely on the parser + * to distinguish the versions (in the case that magic can't distinguish), + * this exception should be thrown. + */ +public class UnsupportedFormatException extends TikaException { + + public UnsupportedFormatException(String msg) { + super(msg); + } +}
