1 /* 2 * This file is a part of CAST project. 3 * (c) Copyright 2007, AGH University of Science & Technology 4 * https://caribou.iisg.agh.edu.pl/trac/cast 5 * 6 * Licensed under the Eclipse Public License, Version 1.0 (the "License"). 7 * You may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * http://www.eclipse.org/legal/epl-v10.html 10 */ 11 /* 12 * File: AttributeMergePolicyNotUniqueException.java 13 * Created: 2008-12-01 14 * Author: tmilos 15 * $Id: AttributeMergePolicyNotUniqueException.java 2214 2009-01-02 19:42:50Z tmilos $ 16 */ 17 18 package pl.edu.agh.cast.model.attributes; 19 20 /** 21 * Thrown when an instance of {@link AttributeMergePolicy} with non unique Id is instantiated. 22 * 23 * @author AGH CAST Team 24 */ 25 public class AttributeMergePolicyNotUniqueException extends RuntimeException { 26 27 private static final long serialVersionUID = 783579525575002269L; 28 29 /** 30 * {@inheritDoc} 31 * 32 * @see java.lang.RuntimeException#RuntimeException() 33 */ 34 public AttributeMergePolicyNotUniqueException() { 35 } 36 37 /** 38 * {@inheritDoc} 39 * 40 * @see java.lang.RuntimeException#RuntimeException(String) 41 */ 42 public AttributeMergePolicyNotUniqueException(String message) { 43 super(message); 44 } 45 46 /** 47 * {@inheritDoc} 48 * 49 * @see java.lang.RuntimeException#RuntimeException(Throwable) 50 */ 51 public AttributeMergePolicyNotUniqueException(Throwable cause) { 52 super(cause); 53 } 54 55 /** 56 * {@inheritDoc} 57 * 58 * @see java.lang.RuntimeException#RuntimeException(String, Throwable) 59 */ 60 public AttributeMergePolicyNotUniqueException(String message, Throwable cause) { 61 super(message, cause); 62 } 63 64 }