- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 389 for mymessage (0.06 sec)
-
guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java
() -> getChecked( FAILED_FUTURE_CHECKED_EXCEPTION, ExceptionWithoutThrowableConstructor.class)); assertThat(expected).hasMessageThat().contains("mymessage"); assertThat(expected).hasCauseThat().isEqualTo(CHECKED_EXCEPTION); } public void testPrefersConstructorWithThrowableParameter() { ExceptionWithManyConstructorsButOnlyOneThrowable exception =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 16.3K bytes - Viewed (0) -
cmd/server-startup-msg.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 23 14:11:35 UTC 2024 - 6.2K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java
*/ public MojoExecutionException(String message, Throwable cause) { super(message, cause); } /** * Construct a new <code>MojoExecutionException</code> exception providing a <code>message</code>. * * @param message */ public MojoExecutionException(String message) { super(message); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/InterpolatorException.java
* * @param message the detail message. The detail message is saved for * later retrieval by the {@link #getMessage()} method. */ public InterpolatorException(String message) { super(message); } /** * Constructs a new InterpolatorException with the specified detail message and cause. * * <p>Note that the detail message associated with {@code cause} is <i>not</i>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 2.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java
* @param message the message to append * @return the current builder */ @Nonnull default MessageBuilder error(Object message) { return style("." + Constants.MAVEN_STYLE_ERROR_NAME + ":-" + Constants.MAVEN_STYLE_ERROR_DEFAULT, message); } /** * Append message content in success style. * By default, bold green * * @param message the message to append
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Nov 02 09:29:52 UTC 2024 - 7.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java
} /** * Creates a new exception with specified detail message for the given repository. * * @param message The detail message, may be {@code null}. * @param repository The repository that caused the error, may be {@code null}. */ public InvalidRepositoryException(String message, Repository repository) { super(message); this.repository = repository; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutionException.java
public LifecycleExecutionException(String message) { super(message); } public LifecycleExecutionException(Throwable cause) { super(cause); } public LifecycleExecutionException(String message, Throwable cause) { super(message, cause); } public LifecycleExecutionException(String message, MavenProject project) { super(message); this.project = project; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java
super(message, artifact, remoteRepositories); } public ArtifactResolutionException(String message, Artifact artifact, Throwable cause) { super(message, artifact, null, cause); } public ArtifactResolutionException(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java
private Throwable exception; private String message; private String reference; private List<ExceptionSummary> children; public ExceptionSummary(Throwable exception, String message, String reference) { this(exception, message, reference, null); } public ExceptionSummary(Throwable exception, String message, String reference, List<ExceptionSummary> children) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java
} private static String toMessage(ModelBuildingResult result) { if (result != null && !result.getModelIds().isEmpty()) { return toMessage(result.getModelIds().get(0), result.getProblems()); } return null; } // Package protected for test static String toMessage(String modelId, List<ModelProblem> problems) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0)