java.lang.IllegalAccessException.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(6.7k)|赞(0)|评价(0)|浏览(225)

本文整理了Java中java.lang.IllegalAccessException.<init>()方法的一些代码示例,展示了IllegalAccessException.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。IllegalAccessException.<init>()方法的具体详情如下:
包路径:java.lang.IllegalAccessException
类名称:IllegalAccessException
方法名:<init>

IllegalAccessException.<init>介绍

[英]Constructs a new IllegalAccessException that includes the current stack trace.
[中]构造包含当前堆栈跟踪的新IllegalAccessException。

代码示例

代码示例来源:origin: apache/activemq

@Override
public void forgetTransaction(ConnectionContext context, TransactionId transactionId) throws Exception {
  throw new IllegalAccessException("Transaction operation not implemented by this broker.");
}

代码示例来源:origin: apache/activemq

@Override
public void beginTransaction(ConnectionContext context, TransactionId xid) throws Exception {
  throw new IllegalAccessException("Transaction operation not implemented by this broker.");
}

代码示例来源:origin: apache/activemq

@Override
public int prepareTransaction(ConnectionContext context, TransactionId xid) throws Exception {
  throw new IllegalAccessException("Transaction operation not implemented by this broker.");
}

代码示例来源:origin: menacher/java-game-server

@Override
public void setId(Object id)
{
  throw new RuntimeException(new IllegalAccessException(
      "id cannot be reset since it is a final variable. "
          + "It is set at constuction time."));
}

代码示例来源:origin: menacher/java-game-server

@Override
public void setGameName(String gameName)
{
  throw new RuntimeException(new IllegalAccessException(
      "GameName is a final variable to be set at Game construction. "
          + "It cannot be set again."));
}

代码示例来源:origin: menacher/java-game-server

/**
 * Meant as a database access key.
 * 
 * @param id
 *            Set the unique identifier for this game.
 */
@Override
public void setId(Object id) {
  throw new RuntimeException(new IllegalAccessException(
      "Game id is a final variable to be set at Game construction. "
          + "It cannot be set again."));
}

代码示例来源:origin: menacher/java-game-server

@Override
public void setGameName(String gameName) {
  throw new RuntimeException(new IllegalAccessException(
      "GameName is a final variable to be set at Game construction. "
          + "It cannot be set again."));
}

代码示例来源:origin: menacher/java-game-server

@Override
public void setGameCommandInterpreter(GameCommandInterpreter interpreter) {
  throw new RuntimeException(new IllegalAccessException(
      "Game id is a final variable to be set at Game construction. "
          + "It cannot be set again."));
}

代码示例来源:origin: alibaba/nacos

public void doRaftAuth(HttpServletRequest req) throws Exception {
  String token = req.getParameter("token");
  if (StringUtils.equals(UtilsAndCommons.SUPER_TOKEN, token)) {
    return;
  }
  String agent = req.getHeader("Client-Version");
  if (StringUtils.startsWith(agent, UtilsAndCommons.NACOS_SERVER_HEADER)) {
    return;
  }
  throw new IllegalAccessException("illegal access,agent= " + agent + ", token=" + token);
}

代码示例来源:origin: apache/ignite

/**
 * Get property value.
 *
 * @param obj Object to get property value from.
 * @return Property value.
 * @throws IllegalAccessException If failed to get value from property or failed access to property via reflection.
 * @throws InvocationTargetException If failed access to property via reflection.
 */
private Object get(Object obj) throws IllegalAccessException, InvocationTargetException {
  if (getter != null)
    return getter.invoke(obj);
  if (field != null)
    return field.get(obj);
  throw new IllegalAccessException("Failed to get value from property. Getter and field was not initialized.");
}

代码示例来源:origin: BroadleafCommerce/BroadleafCommerce

@Override
  public Object invoke(Object o, Method method, Object[] objects) throws Throwable {
    if (method.getName().equals("equals")) {
      return !(objects[0] == null) && objects[0].hashCode() == 31;
    } else if (method.getName().equals("hashCode")) {
      return 31;
    } else if (method.getName().equals("toString")) {
      return "Null_" + responseClass.getSimpleName();
    }
    throw new IllegalAccessException("Not a real object");
  }
});

代码示例来源:origin: spring-projects/spring-framework

Constructor<?> ctor = type.getDeclaredConstructor();
if (Modifier.isPrivate(ctor.getModifiers())) {
  throw new IllegalAccessException("Auto-growing not allowed with private constructor: " + ctor);

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionGlobalHandler() throws Exception {
  testException(new IllegalAccessException(), "SecondControllerAdvice: IllegalAccessException");
}

代码示例来源:origin: ch.qos.logback/logback-classic

/**
 * FOR INTERNAL USE. This method is intended for use by  StaticLoggerBinder.
 *  
 * @param defaultLoggerContext
 * @throws ClassNotFoundException
 * @throws NoSuchMethodException
 * @throws InstantiationException
 * @throws IllegalAccessException
 * @throws InvocationTargetException
 */
public void init(LoggerContext defaultLoggerContext, Object key) throws ClassNotFoundException, NoSuchMethodException, InstantiationException,
        IllegalAccessException, InvocationTargetException {
  if (this.key == null) {
    this.key = key;
  } else if (this.key != key) {
    throw new IllegalAccessException("Only certain classes can access this method.");
  }
  String contextSelectorStr = OptionHelper.getSystemProperty(ClassicConstants.LOGBACK_CONTEXT_SELECTOR);
  if (contextSelectorStr == null) {
    contextSelector = new DefaultContextSelector(defaultLoggerContext);
  } else if (contextSelectorStr.equals("JNDI")) {
    // if jndi is specified, let's use the appropriate class
    contextSelector = new ContextJNDISelector(defaultLoggerContext);
  } else {
    contextSelector = dynamicalContextSelector(defaultLoggerContext, contextSelectorStr);
  }
}

代码示例来源:origin: apache/incubator-dubbo

throw new RpcException(new IllegalAccessException("mock can not be null. url :" + url));

代码示例来源:origin: apache/incubator-dubbo

throw new RpcException(new IllegalAccessException("mock can not be null. url :" + url));

代码示例来源:origin: spring-projects/spring-framework

throw new IllegalAccessException("illegal access");

代码示例来源:origin: spring-projects/spring-framework

@Test
public void resolveExceptionGlobalHandler() throws Exception {
  AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(MyConfig.class);
  this.resolver.setApplicationContext(ctx);
  this.resolver.afterPropertiesSet();
  IllegalAccessException ex = new IllegalAccessException();
  HandlerMethod handlerMethod = new HandlerMethod(new ResponseBodyController(), "handle");
  ModelAndView mav = this.resolver.resolveException(this.request, this.response, handlerMethod, ex);
  assertNotNull("Exception was not handled", mav);
  assertTrue(mav.isEmpty());
  assertEquals("AnotherTestExceptionResolver: IllegalAccessException", this.response.getContentAsString());
}

代码示例来源:origin: spring-projects/spring-framework

proxy.exceptional(new IllegalAccessException());
fail("Should have thrown IllegalAccessException");

代码示例来源:origin: spring-projects/spring-framework

proxy.exceptional(new IllegalAccessException());
fail("Should have thrown IllegalAccessException");

相关文章