/* * @topic T11385 Exception demo VIII * @brief class ExBadUserPrivilege extends Exception */ package week08exceptions; public class ExBadUserPrivilege extends Exception { public ExBadUserPrivilege( String msg ) { super( msg ); } }//class ExBadUserPrivilege