Package com.kurento.tool.rom.server

Examples of com.kurento.tool.rom.server.ProtocolException


    } else if (isList(type)) {
      return RomType.LIST;
    } else if (isRemoteClass(type)) {
      return RomType.REMOTE_CLASS;
    } else {
      throw new ProtocolException("Unknown type: " + type);
    }
  }
View Full Code Here


        break;
      }
    }

    if (param == null) {
      throw new ProtocolException("@Param annotation must be specified"
          + " in all methods and constructor params");
    }

    return param;
  }
View Full Code Here

TOP

Related Classes of com.kurento.tool.rom.server.ProtocolException

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.