01 /*
02 * SPDX-License-Identifier: Apache-2.0
03 *
04 * Copyright 2008-2017 the original author or authors.
05 *
06 * Licensed under the Apache License, Version 2.0 (the "License");
07 * you may not use this file except in compliance with the License.
08 * You may obtain a copy of the License at
09 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 package griffon.exceptions;
19
20 import griffon.core.artifact.GriffonArtifact;
21 import griffon.core.artifact.GriffonClass;
22
23 import javax.annotation.Nonnull;
24
25 /**
26 * @author Andres Almiray
27 * @since 2.0.0
28 */
29 public class ArtifactNotFoundException extends GriffonException {
30 private static final long serialVersionUID = -7881105306242340254L;
31 private static final String CAUSE = "cause";
32 private static final String CLAZZ = "clazz";
33
34 public ArtifactNotFoundException(@Nonnull Throwable cause) {
35 super("Could not find artifact", checkNonNull(cause, CAUSE));
36 }
37
38 public ArtifactNotFoundException(@Nonnull Class<?> clazz) {
39 super(format(clazz));
40 }
41
42 public ArtifactNotFoundException(@Nonnull GriffonClass griffonClass, @Nonnull Throwable cause) {
43 super(format(griffonClass), checkNonNull(cause, CAUSE));
44 }
45
46 public ArtifactNotFoundException(@Nonnull Class<? extends GriffonArtifact> clazz, @Nonnull String name) {
47 super(format(clazz, name));
48 }
49
50 private static String format(GriffonClass griffonClass) {
51 return "Could not find artifact for " + checkNonNull(griffonClass, "griffonClass").getPropertyName();
52 }
53
54 private static String format(Class<?> clazz) {
55 return "Could not find artifact for " + checkNonNull(clazz, CLAZZ).getName();
56 }
57
58 private static String format(Class<? extends GriffonArtifact> clazz, String name) {
59 return "Could not find artifact of type " + checkNonNull(clazz, CLAZZ).getName() + " named " + checkNonBlank(name, "name");
60 }
61 }
|