All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kestros.commons.uilibraries.api.exceptions.NoMatchingCompilerException Maven / Gradle / Ivy

Go to download

Provides UI Libraries to Sling instances, which are used for maintaining and rendering CSS and JavaScript.

The newest version!
/*
 * 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 io.kestros.commons.uilibraries.api.exceptions;

import io.kestros.commons.uilibraries.api.services.ScriptTypeCompiler;
import javax.annotation.Nonnull;

/**
 * Thrown when a Service cannot find a {@link ScriptTypeCompiler} service.
 */
public class NoMatchingCompilerException extends Exception {

  /**
   * Exception thrown there are no registered compilers to handle a compilation request.
   *
   * @param message Cause message.
   */
  @Nonnull
  public NoMatchingCompilerException(@Nonnull final String message) {
    super(message);
  }

  /**
   * Exception thrown there are no registered compilers to handle a compilation request.
   *
   * @param message Cause message.
   * @param cause Cause of the exception.
   */
  @Nonnull
  public NoMatchingCompilerException(@Nonnull final String message,
          @Nonnull final Throwable cause) {
    super(message, cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy