Package java.lang

Examples of java.lang.Exception


        connection.setInstanceFollowRedirects(false);

        connection.connect();

        if (connection.getResponseCode() != 200) {
            throw new Exception("Invalid HTTP Response code " + connection.getResponseCode());
        }

        return IOUtils.toString(connection.getInputStream(), "UTF-8");
    }
View Full Code Here


        }

        String response = fetchURL(url);

        if (response == null)
            throw new Exception("Server Returned NULL Response");

        Map<String, Object> obj = (Map<String, Object>) JSONValue.parse(response);

        if (obj.get("error") != null)
            throw new Exception((String) obj.get("error"));

        return (String)obj.get("input_address");
    }
View Full Code Here

        } catch (Exception e) {
            System.out.println("Message check failed: ");
            e.printStackTrace();
        }
        if (failbuild)
            throw new Exception("Message check failed. \n" +
                "See error in build output or call ant runmessagecheck.");
    }   
View Full Code Here

    if (ontology==null) {
      try {
        ontology = new OntologyFactory(this.conf).getOntology();
      } catch (Exception e) {
        throw new Exception("Failed to instantiate ontology");
      }
    }

    //foreach sample file
    for (int i=0; i<sampleFiles.length; i++) {
View Full Code Here

                dto = new PolicyDTO();
                dto.setPolicy(new String(content));
                dto.setPolicy(dto.getPolicy().trim().replaceAll(">\\s+<", "><"));
                stub.addPolicy(dto);
            } else {
                throw new Exception("Error while importing the policy at the backend service");
            }
        } catch (Exception e) {
            String message = e.getMessage();
            handleException(message, e);
        }
View Full Code Here

    public void addConnectionFactory(String factoryName, String service, Map<String,String> params,
                                     boolean listener) throws Exception {

        if (getConnectionFactory(factoryName, null, listener) != null) {
            throw new Exception("A JMS connection factory already exists by the name " + factoryName);
        }

        removeDefaults(params);
        stub.addConnectionFactory(getParameter(factoryName, params), service, listener);
    }
View Full Code Here

            client = stub._getServiceClient();
            option = client.getOptions();
            option.setManageSession(true);
            option.setProperty(HTTPConstants.COOKIE_STRING, authCookie);
        } else {
            throw new Exception("User not authenticated");
        }
    }
View Full Code Here

                invalidateSession();
            }
        } catch (Exception e) {
            String msg = "Cannot restart the server." + e.getMessage();
            log.error(msg, e);
            throw new Exception(msg, e);
        }
        return result;
    }
View Full Code Here

                invalidateSession();
            }
        } catch (Exception e) {
            String msg = "Cannot restart the server. " + e.getMessage();
            log.error(msg, e);
            throw new Exception(msg, e);
        }
        return result;
    }
View Full Code Here

                invalidateSession();
            }
        } catch (RemoteException e) {
            String msg = "Cannot shutdown the server. "  + e.getMessage();
            log.error(msg, e);
            throw new Exception(msg, e);
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of java.lang.Exception

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.