nosuchservicecontext.java

来自「java jdk 1.4的源码」· Java 代码 · 共 26 行

JAVA
26
字号
/* * @(#)NoSuchServiceContext.java	1.9 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.internal.core ;/** Exception used by ServiceContexts object to report that no* service context matches the requested id.*/public class NoSuchServiceContext extends Exception{    public NoSuchServiceContext()    {        super();    }    public NoSuchServiceContext(String mssg)    {        super(mssg);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?