Package it.eng.spago.error

Examples of it.eng.spago.error.EMFUserError


    } catch (Exception e) {
      if (dataSource != null) {
        logger.error("Error while importing exported datasource with label [" + dataSource.getLabel() + "].", e);
      }
      logger.error("Error while inserting object ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here


    } catch (Exception e) {
      if (exportedDataSet != null) {
        logger.error("Error while importing exported dataset with label [" + exportedDataSet.getLabel() + "].", e);
      }
      logger.error("Error while inserting object ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

    } catch (Exception e) {
      if (functToInsert != null) {
        logger.error("Error while importing exported functionality with path [" + functToInsert.getPath() + "].", e);
      }
      logger.error("Error while inserting object ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }

  }
View Full Code Here

    } catch (Exception e) {
      if (exportedLov != null) {
        logger.error("Error while importing exported lov with label [" + exportedLov.getLabel() + "].", e);
      }
      logger.error("Error while inserting object ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

    } catch (Exception e) {
      if (check != null) {
        logger.error("Error while importing exported check with label [" + check.getLabel() + "].", e);
      }
      logger.error("Error while inserting object ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

    } catch (Exception e) {
      if (exportedParameter != null) {
        logger.error("Error while importing exported parameter with label [" + exportedParameter.getLabel() + "].", e);
      }
      logger.error("Error while inserting object ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

    } catch (Exception e) {
      if (exportedObj != null) {
        logger.error("Error while importing exported biobject with label [" + exportedObj.getLabel() + "]", e);
      }
      logger.error("Error while inserting object ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

      if (expSbiSnapshots != null) {
        logger.error("Error while importing exported snapshot with name [" + expSbiSnapshots.getName() + "] " +
            "of biobject with label [" + obj.getLabel() + "]", e);
      }
      logger.error("Error while getting exported template objects ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

      if (expSbiSnapshots != null) {
        logger.error("Error while updating exported snapshot with name [" + expSbiSnapshots.getName() + "] " +
            "of biobject with label [" + obj.getLabel() + "]", e);
      }
      logger.error("Error while getting exported template objects ", e);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }   
View Full Code Here

      existingSubObject.setSbiBinContents(binary);
      sessionCurrDB.update(existingSubObject);

    } catch (HibernateException he) {
      logger.error("Error while getting exported template objects ", he);
      throw new EMFUserError(EMFErrorSeverity.ERROR, "8004", "component_impexp_messages");
    } finally {
      logger.debug("OUT");
    }
  }
View Full Code Here

TOP

Related Classes of it.eng.spago.error.EMFUserError

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.