X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e37c1e4bba9bb89cd2842f08cde998eb7f941d04..f3e4803befab19389587dd1d9af5ecdeffec551e:/src/bindings/java/jxbt_utilities.c diff --git a/src/bindings/java/jxbt_utilities.c b/src/bindings/java/jxbt_utilities.c index 1daf3700c5..afd919026f 100644 --- a/src/bindings/java/jxbt_utilities.c +++ b/src/bindings/java/jxbt_utilities.c @@ -1,10 +1,10 @@ /* Various JNI helper functions */ -/* Copyright (c) 2007-2012. The SimGrid Team. +/* Copyright (c) 2007-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #include /* abort */ #include "xbt/misc.h" @@ -254,6 +254,14 @@ void jxbt_throw_host_not_found(JNIEnv * env, const char *invalid_name) bprintf("No such host: %s", invalid_name)); } +void jxbt_throw_storage_not_found(JNIEnv * env, const char *invalid_name) +{ + jxbt_throw_by_name(env, + "org/simgrid/msg/StorageNotFoundException", + bprintf("No such storage: %s", invalid_name)); +} + + void jxbt_throw_process_not_found(JNIEnv * env, const char *invalid_name) { jxbt_throw_by_name(env,