/* * To the extent possible under law, Red Hat, Inc. has dedicated all copyright * to this software to the public domain worldwide, pursuant to the CC0 Public * Domain Dedication. This software is distributed without any warranty. See * <http://creativecommons.org/publicdomain/zero/1.0/>. */ package com.redhat.gss.ws; public class SuperException extends Exception { private int id; public SuperException(String message) { super(message); } public void setId(int id) { this.id = id; } public int getId() { return id; } }