HomeSort by relevance Sort by last modified time
    Searched refs:CustomException (Results 1 - 8 of 8) sorted by null

  /cts/tests/tests/os/src/android/os/cts/
CrossProcessExceptionService.java 32 public static class CustomException extends IllegalArgumentException implements Parcelable {
33 public CustomException(String message) {
46 public static final Creator<CustomException> CREATOR = new Creator<CustomException>() {
48 public CustomException createFromParcel(Parcel source) {
49 return new CustomException("REMOTE");
53 public CustomException[] newArray(int size) {
54 return new CustomException[size];
78 throw new CustomException("LOCAL");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dict.py 465 class CustomException(Exception):
474 raise CustomException
489 with self.assertRaises(CustomException):
  /external/python/cpython2/Lib/test/
test_dict.py 495 class CustomException(Exception):
504 raise CustomException
519 with self.assertRaises(CustomException):
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dict.py 493 class CustomException(Exception):
502 raise CustomException
517 with self.assertRaises(CustomException):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_dict.py 493 class CustomException(Exception):
502 raise CustomException
517 with self.assertRaises(CustomException):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dict.py 493 class CustomException(Exception):
502 raise CustomException
517 with self.assertRaises(CustomException):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dict.py 493 class CustomException(Exception):
502 raise CustomException
517 with self.assertRaises(CustomException):
  /external/python/cpython3/Lib/test/
test_dict.py 653 class CustomException(Exception):
662 raise CustomException
676 with self.assertRaises(CustomException):
    [all...]

Completed in 243 milliseconds