1 16 17 package org.apache.jetspeed.om.profile; 18 19 import org.apache.jetspeed.util.JetspeedException; 20 21 22 28 29 public class ProfileException extends JetspeedException { 30 31 public static final String PROFILE_FAILED_STORE 32 = "The profile failed to store."; 33 34 public ProfileException() { 35 super(); 36 } 37 38 public ProfileException( String message ) { 39 super( message ); 40 } 41 42 } 43 | Popular Tags |