1 22 23 package org.jboss.profileservice.spi; 24 25 31 public class NoSuchProfileException extends Exception  32 { 33 34 private static final long serialVersionUID = 461561859030090797L; 35 36 public NoSuchProfileException(String message) 37 { 38 super(message); 39 } 40 41 public NoSuchProfileException(String message, Throwable cause) 42 { 43 super(message, cause); 44 } 45 46 public NoSuchProfileException(Throwable cause) 47 { 48 super(cause); 49 } 50 } 51 | Popular Tags |