* @throws NotBoundException
*/
public ChatMember() throws SystemConsoleNotFoundException, MalformedURLException, RemoteException, NotBoundException {
this.console = System.console();
if (this.console == null)
throw new SystemConsoleNotFoundException();
this.controller = new ChatMemberController();
}