* @throws SkypeException when the connection to the Skype client has gone bad or AP2AP connection is not ok.
*/
public void write(String text) throws SkypeException {
Utils.checkNotNull(text, "text");
try {
NotificationChecker checker = new NotificationChecker() {
public boolean isTarget(String message) {
if (message.startsWith("APPLICATION " + getApplication().getName() + " SENDING ")) {
String data = message.substring(("APPLICATION " + getApplication().getName() + " SENDING ").length());
if ("".equals(data)) {
return true;