Package nexj.core.rpc

Examples of nexj.core.rpc.RPCSizeException


               /**
                * @see nexj.core.util.LimitInputStream#throwLimitException()
                */
               protected int throwLimitException() throws LimitIOException
               {
                  throw new RPCSizeException((bParam) ? "err.rpc.parameterSize" : "err.rpc.attachmentSize", new Object[]
                  {
                     new Long(m_lMaxCount)
                  });
               }
            };
View Full Code Here


            return new LimitInputStream(m_request.getInputStream(), m_lMaxRequestSize, true);
         }

         if (nSize > m_lMaxRequestSize)
         {
            throw new RPCSizeException("err.rpc.requestSize",
               new Object[]{new Long(m_lMaxRequestSize)});
         }
      }

      return m_request.getInputStream();
View Full Code Here

TOP

Related Classes of nexj.core.rpc.RPCSizeException

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.