Package com.jitcaforwin.cominterface.exceptions

Examples of com.jitcaforwin.cominterface.exceptions.ObjectTypeNotSupported


      } else if (o instanceof DispatchObject) {
        return new Variant(((DispatchObject) o).getDispatch());
      } else if (o instanceof Double) {
        return new Variant((Double) o);
      } else {
        throw new ObjectTypeNotSupported(o.getClass().toString(),
            "Integer, Long, String, Boolean, DispatchObject, Double");
      }
    } catch (JacobException e) {
      throw JitcaCOMException.handle(e);
    }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.cominterface.exceptions.ObjectTypeNotSupported

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.