Examples of LogException


Examples of com.atomikos.persistence.LogException

            }
            output_ = null;
            ooutput_ = null;
        } catch ( IOException e ) {
            errors = new Stack ();
            throw new LogException ( "Error closing previous output", errors );
        }
    }
View Full Code Here

Examples of com.sleepycat.je.log.LogException

      instantiateComparator(duplicateComparatorClass,
                "Duplicate");
    }
      }
  } catch (ClassNotFoundException CNFE) {
      throw new LogException("couldn't instantiate class comparator",
           CNFE);
  }

  if (entryTypeVersion >= 1) {
      maxMainTreeEntriesPerNode = LogUtils.readInt(itemBuffer);
View Full Code Here

Examples of com.sleepycat.je.log.LogException

        Comparator ret = null;
        try {
      return (Comparator) comparator.newInstance();
        } catch (InstantiationException IE) {
            throw new LogException
                ("Exception while trying to load " + comparatorType +
                 " Comparator class: " + IE);
        } catch (IllegalAccessException IAE) {
            throw new LogException
                ("Exception while trying to load " + comparatorType +
                 " Comparator class: " + IAE);
        }
    }
View Full Code Here

Examples of com.sun.jini.reliableLog.LogException

//                      } else {//in a shared activation group
//                          sharedActivationRef.setInitializationData(activationID,
//                                                                    data);
//                      }//endif
    } catch (ActivationException e) {
        throw new LogException("activation system problem", e);
    }
      }
      oldLog.deletePersistentStore();
  } finally {
      concurrentObj.writeUnlock();
View Full Code Here

Examples of com.volantis.synergetics.log.LogException

               
                if (!configFile.isAbsolute()) {
                    if (absConfigPath != null) {
                        configFile = new File(absConfigPath, path);
                    } else if (!couldBeResource) {
                        throw new LogException(exceptionLocalizer.format(
                                "relative-paths-not-allowed", path));
                    }
                }
                if (!configFile.exists() && mustExist) {
                    configFile = null;
View Full Code Here

Examples of org.apache.geronimo.transaction.manager.LogException

                }
            } finally {
                connection.close();
            }
        } catch (SQLException e) {
            throw new LogException("Failure during prepare or commit", e);
        }
        return null;
    }
View Full Code Here

Examples of org.apache.geronimo.transaction.manager.LogException

                }
            } finally {
                connection.close();
            }
        } catch (SQLException e) {
            throw new LogException("Failure during prepare or commit", e);
        }
    }
View Full Code Here

Examples of org.apache.geronimo.transaction.manager.LogException

            throw new LogException("Failure during prepare or commit", e);
        }
    }

    public void rollback(Xid xid, Object logMark) throws LogException {
        throw new LogException("JDBCLog does not support rollback of prepared transactions.  Use it only on servers that do not import transactions");
    }
View Full Code Here

Examples of org.apache.geronimo.transaction.manager.LogException

                }
            } finally {
                connection.close();
            }
        } catch (SQLException e) {
            throw new LogException("Recovery failure", e);
        }

    }
View Full Code Here

Examples of org.apache.geronimo.transaction.manager.LogException

                }
            } finally {
                connection.close();
            }
        } catch (SQLException e) {
            throw new LogException("Failure during prepare or commit", e);
        }
        return null;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.