:core:spi remove unused exceptions
Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/c24023ee Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/c24023ee Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/c24023ee Branch: refs/heads/develop Commit: c24023ee5c6e2e592ce59e11aebf4b783060bd26 Parents: f819bfe Author: Paul Merlin <[email protected]> Authored: Sun May 14 16:17:31 2017 +0200 Committer: Paul Merlin <[email protected]> Committed: Sun May 14 16:17:31 2017 +0200 ---------------------------------------------------------------------- .../ReadOnlyEntityStoreException.java | 32 -------------------- 1 file changed, 32 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/c24023ee/core/spi/src/main/java/org/apache/polygene/spi/entitystore/ReadOnlyEntityStoreException.java ---------------------------------------------------------------------- diff --git a/core/spi/src/main/java/org/apache/polygene/spi/entitystore/ReadOnlyEntityStoreException.java b/core/spi/src/main/java/org/apache/polygene/spi/entitystore/ReadOnlyEntityStoreException.java deleted file mode 100644 index 97344e5..0000000 --- a/core/spi/src/main/java/org/apache/polygene/spi/entitystore/ReadOnlyEntityStoreException.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * 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.polygene.spi.entitystore; - -/** - * This exception is thrown for methods that creates or updates entities in read-only EntityStores. - */ -public class ReadOnlyEntityStoreException - extends EntityStoreException -{ - public ReadOnlyEntityStoreException( String message ) - { - super( message ); - } -}
