450451452453454455456457458459
{ options.addIncludedPort(includedProtocol, Integer.parseInt(String.valueOf(ports[i]))); } catch (NumberFormatException e) { throw new InitException("Invalid port for inclusion: " + ports[i], e); } } } }
265266267268269270271272273274
options.addPort(Integer.parseInt(String.valueOf(ports[i]))); } } catch (NumberFormatException e) { throw new InitException("Invalid port: " + ports[i], e); } } } }
285286287288289290291292293294
options.addExcludedPort(excludedProtocol, Integer.parseInt(String.valueOf(ports[i]))); } catch (NumberFormatException e) { throw new InitException("Invalid port for exclusion: " + ports[i], e); } } } }
365366367368369370371372373374
385386387388389390391392393394
144145146147148149150151152
{ this.decoder = decoderClass.newInstance(); } catch (InstantiationException | IllegalAccessException e) { throw new InitException("Unable to create decoder: " + decoderClass.getName(),e); } } }
428429430431432433434435436
throws InitException { wcPrototype = getContext(); if (wcPrototype == null) { throw new InitException ("Unable to create WebContext prototype"); } }
434435436437438439440441442
435436437438439440441442443
447448449450451452453454455