Package org.objectweb.joram.client.jms.admin

Examples of org.objectweb.joram.client.jms.admin.AdminException


        dest = new TemporaryTopic(id, null);
      } else {
        dest = new Topic(id);
      }
    } else {
      throw new AdminException("Unknown destination type (" + type + ')');
    }
   
    dest.adminName = name;
    return dest;
  }
View Full Code Here


      }
    } catch (ConnectException exc) {
      if (isActive)
        adminDurationState = System.currentTimeMillis();
      isActive = false;
      throw new AdminException("Admin connection can't be established: " + exc.getMessage());
    }
  }
View Full Code Here

      dest.delete();
      unbind(name);
    } catch (Exception exc) {
      logger.log(BasicLevel.WARN,
                 "removeDestination failed: " + name, exc);
      throw new AdminException("removeDestination(" + name + ") failed.");
    }
  }
View Full Code Here

TOP

Related Classes of org.objectweb.joram.client.jms.admin.AdminException

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.