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

ro.isdc.wro.model.group.InvalidGroupNameException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
/*
 * Copyright (c) 2010. All rights reserved.
 */
package ro.isdc.wro.model.group;

import ro.isdc.wro.WroRuntimeException;

/**
 * This exception is thrown when an invalid group is requested..
 *
 * @author Alex Objelean
 * @created Created on Jan 6, 2010
 */
public class InvalidGroupNameException extends WroRuntimeException {
  /**
   * serialVersionUID
   */
  private static final long serialVersionUID = 1L;

  /**
   * @param message detailed message.
   */
  public InvalidGroupNameException(final String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy