SessionNotFoundException.java :  » Location » geloba-moga » gm » server » exception » Android Open Source

Android Open Source » Location » geloba moga 
geloba moga » gm » server » exception » SessionNotFoundException.java
package gm.server.exception;

import org.apache.log4j.Logger;

public class SessionNotFoundException extends Exception {
  private static final long serialVersionUID = -8521696532384857548L;

  public SessionNotFoundException(String sid) {
    super(sid);
    Logger l = Logger.getLogger(SessionNotFoundException.class);
    l.warn("Session " + sid + " was not found");
  }  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.