Searched refs:Exception (Results 1 - 25 of 407) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/test/rubygems/plugin/exception/
H A Drubygems_plugin.rb2 raise Exception.new('boom')
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DTransactionWorker.java26 throws Exception;
H A DStoredIterator.java94 } catch (Exception e) {
98 } catch (Exception ignored) {
157 } catch (Exception e) {
186 } catch (Exception e) {
218 } catch (Exception e) {
251 } catch (Exception e) {
284 } catch (Exception e) {
313 } catch (Exception e) {
348 } catch (Exception e) {
383 } catch (Exception
[all...]
/macosx-10.10.1/CPAN-56/Modules/Test-Exception-0.31/
H A DMakefile1 NAME = Test-Exception
/macosx-10.10.1/CPAN-56/Modules/Test-Exception-0.32/
H A DMakefile1 NAME = Test-Exception
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Dexceptions.rb9 class Gem::Exception < RuntimeError
13 class Gem::CommandLineError < Gem::Exception; end
15 class Gem::DependencyError < Gem::Exception; end
17 class Gem::DependencyRemovalException < Gem::Exception; end
22 class Gem::GemNotInHomeException < Gem::Exception
26 class Gem::DocumentError < Gem::Exception; end
30 class Gem::EndOfYAMLException < Gem::Exception; end
36 class Gem::FilePermissionError < Gem::Exception
50 class Gem::FormatException < Gem::Exception
54 class Gem::GemNotFoundException < Gem::Exception; en
[all...]
H A Dsource_specific_file.rb19 raise Gem::Exception, "Unable to find '#{name}'"
25 raise Gem::Exception, "Unable to download '#{spec.full_name}'"
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/util/
H A DExceptionUnwrapper.java22 * Unwraps an Exception and returns the underlying Exception, or throws an
25 * @param e is the Exception to unwrap.
27 * @return the underlying Exception.
32 * Exception or an Error.
34 public static Exception unwrap(Exception e) {
37 if (t instanceof Exception) {
38 return (Exception) t;
42 throw new IllegalArgumentException("Not Exception o
[all...]
/macosx-10.10.1/ruby-106/ruby/test/-ext-/exception/
H A Dtest_enc_raise.rb10 e = assert_raise(Bug::Exception) {Bug::Exception.enc_raise(enc, "[Feature #5650]")}
/macosx-10.10.1/swig-12/Lib/
H A Dstd_except.i36 %define %std_exception_map(Exception, Code)
37 %typemap(throws,noblock=1) Exception {
40 %ignore Exception;
41 struct Exception {
/macosx-10.10.1/expat-12/tests/
H A Dtest-6295922.py6 raise Exception
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/
H A DNullTransactionRunner.java24 throws Exception {
28 } catch (Exception e) {
H A DSecondaryDeadlockTest.java42 throws Exception {
55 throws Exception {
66 private Exception exception;
74 throws Exception {
94 } catch (Exception e) {
101 } catch (Exception e) {
108 } catch (Exception e) {
121 throws Exception {
144 public void doWork() throws Exception {
149 public void doWork() throws Exception {
[all...]
H A DTestSR15721.java29 throws Exception {
55 throws Exception {
65 throws Exception {
76 } catch (Exception e) {
90 throws Exception {
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/security/
H A Dpolicy.rb54 raise Gem::Security::Exception, 'missing signing chain' unless chain
55 raise Gem::Security::Exception, 'empty signing chain' if chain.empty?
63 rescue Gem::Security::Exception => e
64 raise Gem::Security::Exception, "invalid signing chain: #{e.message}"
73 raise Gem::Security::Exception, "invalid signature" unless
84 raise Gem::Security::Exception, 'missing signing certificate' unless
90 raise Gem::Security::Exception,
95 raise Gem::Security::Exception, "#{message} not valid after #{not_after}"
99 raise Gem::Security::Exception,
113 raise Gem::Security::Exception, 'missin
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/util/test/
H A DExceptionWrapperTest.java30 throws Exception {
43 throws Exception {
60 throws Exception {
65 Exception ee = ExceptionUnwrapper.unwrap(e);
76 throws Exception {
81 Exception ee = ExceptionUnwrapper.unwrap(e);
92 throws Exception {
123 Exception ex = new Exception("some exception");
124 String causedBy = "Caused by: java.lang.Exception
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/persist/test/
H A DEvolveTestInit.java27 throws Exception {
46 throws Exception {
/macosx-10.10.1/ruby-106/extras/
H A Drails13 rescue Exception
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DReplicationHostAddress.java65 }catch (Exception e){
/macosx-10.10.1/llvmCore-3425.0.34/bindings/python/llvm/tests/
H A Dbase.py31 raise Exception('No suitable test binaries available!')
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/java/javax/security/auth/callback/
H A DUnsupportedCallbackException.java4 public class UnsupportedCallbackException extends Exception
/macosx-10.10.1/ruby-106/ruby/lib/rake/
H A Druntest.rb13 rescue Exception => ex
/macosx-10.10.1/ruby-106/ruby/test/csv/
H A Dtest_data_converters.rb72 assert_nothing_raised(Exception) { @parser.convert(:integer) }
81 assert_nothing_raised(Exception) { @parser.convert(:float) }
89 assert_nothing_raised(Exception) do
101 assert_nothing_raised(Exception) do
113 assert_nothing_raised(Exception) { @parser.convert(:numeric) }
124 assert_nothing_raised(Exception) { @parser.convert(:all) }
133 assert_nothing_raised(Exception) do
143 assert_nothing_raised(Exception) { @parser.convert(:numeric) }
144 assert_nothing_raised(Exception) { @parser.convert(&@custom) }
152 assert_nothing_raised(Exception) d
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/serial/
H A DCatalogCornerCaseTest.java28 throws Exception {
41 throws Exception {
54 throws Exception {
66 } catch (Exception e) {
75 throws Exception {
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_security_policy.rb76 e = assert_raises Gem::Security::Exception do
90 e = assert_raises Gem::Security::Exception do
100 e = assert_raises Gem::Security::Exception do
110 e = assert_raises Gem::Security::Exception do
122 e = assert_raises Gem::Security::Exception do
132 e = assert_raises Gem::Security::Exception do
142 e = assert_raises Gem::Security::Exception do
156 e = assert_raises Gem::Security::Exception do
170 e = assert_raises Gem::Security::Exception do
178 e = assert_raises Gem::Security::Exception d
[all...]

Completed in 229 milliseconds

1234567891011>>