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

io.kestros.commons.uilibraries.api.exceptions.ScriptCompressionException 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.models.ScriptType;
import javax.annotation.Nonnull;

/**
 * Generic Exception thrown when CSS or JavaScript output failed to minify/compress.
 */
public class ScriptCompressionException extends Exception {

  private static final long serialVersionUID = 1L;

  /**
   * Generic Exception thrown when CSS or JavaScript output failed to minify/compress.
   *
   * @param message Cause message.
   */
  @Nonnull
  public ScriptCompressionException(@Nonnull final String message) {
    super(message);
  }

  /**
   * Generic Exception thrown when CSS or JavaScript output failed to minify/compress.
   *
   * @param message Cause message.
   * @param cause Cause of the exception.
   */
  @Nonnull
  public ScriptCompressionException(@Nonnull final String message, @Nonnull final Throwable cause) {
    super(message, cause);
  }

  /**
   * Generic Exception thrown when CSS or JavaScript output failed to minify/compress.
   *
   * @param resourcePath Absolute path to the UiLibrary that could not be compressed.
   * @param scriptType CSS or JavaScript Type.
   * @param message Cause message.
   */
  @SuppressWarnings("unused")
  public ScriptCompressionException(@Nonnull final String resourcePath,
          @Nonnull final ScriptType scriptType,
          @Nonnull final String message) {
    super(String.format("Unable to compress %s script for '%s'. %s.", scriptType.getName(),
                        resourcePath, message));
  }

  /**
   * Generic Exception thrown when CSS or JavaScript output failed to minify/compress.
   *
   * @param resourcePath Absolute path to the UiLibrary that could not be compressed.
   * @param scriptType CSS or JavaScript Type.
   * @param message Cause message.
   * @param cause Cause of the exception.
   */
  public ScriptCompressionException(@Nonnull final String resourcePath,
          @Nonnull final ScriptType scriptType,
          @Nonnull final String message,
          @Nonnull final Throwable cause) {
    super(String.format("Unable to compress %s script for '%s'. %s.", scriptType.getName(),
                        resourcePath, message), cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy