java类org.omg.CORBA.portable.UnknownException的实例源码

CorbaMessageMediatorImpl.java 文件源码 项目:openjdk9 阅读 28 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
CorbaMessageMediatorImpl.java 文件源码 项目:lookaside_java-1.8.0-openjdk 阅读 26 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
CorbaMessageMediatorImpl.java 文件源码 项目:jdk8u_corba 阅读 26 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
AbstractWriteHandler.java 文件源码 项目:bingexcel 阅读 25 收藏 0 点赞 0 评论 0
public AbstractWriteHandler(Workbook wb, String path) {
    this.wb = wb;
    File f = FileCreateUtils.createFile(path);
    try {
        os = new FileOutputStream(f);
    } catch (FileNotFoundException e) {
        // system bug
        f.deleteOnExit();
        throw new UnknownException(e);
    }

}
CorbaMessageMediatorImpl.java 文件源码 项目:infobip-open-jdk-8 阅读 35 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
CorbaMessageMediatorImpl.java 文件源码 项目:openjdk-source-code-learn 阅读 28 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
CorbaMessageMediatorImpl.java 文件源码 项目:OLD-OpenJDK8 阅读 28 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
CorbaMessageMediatorImpl.java 文件源码 项目:openjdk-orb 阅读 30 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
CorbaMessageMediatorImpl.java 文件源码 项目:openjdk-icedtea7 阅读 25 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
    CorbaMessageMediator messageMediator, UnknownException ex)
{
    // NOTE: This service context container gets augmented in
    // tail call.
    ServiceContexts contexts = null;
    SystemException sys = new UNKNOWN( 0,
        CompletionStatus.COMPLETED_MAYBE);
    contexts = new ServiceContexts( (ORB)messageMediator.getBroker() );
    UEInfoServiceContext uei = new UEInfoServiceContext(sys);
    contexts.put( uei ) ;
    return createSystemExceptionResponse(messageMediator, sys, contexts);
}
CorbaProtocolHandler.java 文件源码 项目:OpenJSharp 阅读 23 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:openjdk-jdk10 阅读 21 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:openjdk9 阅读 21 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:lookaside_java-1.8.0-openjdk 阅读 25 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:jdk8u_corba 阅读 25 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:infobip-open-jdk-8 阅读 19 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:openjdk-source-code-learn 阅读 23 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:OLD-OpenJDK8 阅读 20 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:openjdk-orb 阅读 22 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);
CorbaProtocolHandler.java 文件源码 项目:openjdk-icedtea7 阅读 22 收藏 0 点赞 0 评论 0
public CorbaMessageMediator createUnknownExceptionResponse(
CorbaMessageMediator messageMediator,
UnknownException ex);


问题


面经


文章

微信
公众号

扫码关注公众号