Package org.smslib

Examples of org.smslib.UnknownMessage


          }
          catch (Exception e)
          {
            // PduFactory will give an exception
            // for PDUs it can't understand
            UnknownMessage msg;
            msg = new UnknownMessage(pduString, memIndex, getATHandler().getStorageLocations().substring((ml * 2), (ml * 2) + 2));
            msg.setGatewayId(getGatewayId());
            msgList.add(msg);
            incInboundMessageCount();
            Logger.getInstance().logError("Unhandled SMS in inbox, skipping...", e, getGatewayId());
            Logger.getInstance().logError("ERROR PDU: " + pduString, null, getGatewayId());
          }
View Full Code Here

TOP

Related Classes of org.smslib.UnknownMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.