代码搜索:Exceptions
找到约 7,847 项符合「Exceptions」的源代码
代码结果 7,847
www.eeworm.com/read/296064/3908470
h exceptions.h
/*
* This source code is a part of coLinux source package.
*
* Dan Aloni , 2004 (c)
*
* The code is licensed under the GPL. See the COPYING file at
* the root directory.
*
*/
www.eeworm.com/read/294947/3914367
py exceptions.py
#
# Copyright 2004 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Pub
www.eeworm.com/read/290540/3972679
s exceptions.s
/*
* (C) Copyright 2004, Psyent Corporation
* Scott McNutt
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is f
www.eeworm.com/read/287078/4030855
cpp exceptions.cpp
#include
#include
void throwIf(bool inShouldThrow) throw (std::runtime_error)
{
if (inShouldThrow) {
throw std::runtime_error("Here's my exception");
}
}
in
www.eeworm.com/read/287078/4030892
cpp exceptions.cpp
#include
using namespace std;
int main(int argc, char** argv)
{
int* ptr;
int numInts = 10;
try {
ptr = new int[numInts];
} catch (bad_alloc& e) {
cerr
www.eeworm.com/read/285437/4049963
exceptions-client
Appendix K MySQL FLOSS License Exception
****************************************
The MySQL AB Exception for Free/Libre and Open Source Software-only
Applications Using MySQL Client Libraries (th
www.eeworm.com/read/281683/4113248
c exceptions.c
#include "types.h"
#include "trace.h"
#include "threads.h"
#include "constants.h"
#include "specialsignatures.h"
#include "specialclasses.h"
#include "exceptions.h"
#include "classes.h"
#include "l
www.eeworm.com/read/281683/4113262
h exceptions.h
#include "types.h"
#include "classes.h"
#ifndef _EXCEPTIONS_H
#define _EXCEPTIONS_H
extern Object *outOfMemoryError;
extern Object *noSuchMethodError;
extern Object *stackOverflowError;
extern Obje
www.eeworm.com/read/280962/4121069
py exceptions.py
# exceptions.py - exceptions for SQLAlchemy
# Copyright (C) 2005, 2006, 2007, 2008 Michael Bayer mike_mp@zzzcomputing.com
#
# This module is part of SQLAlchemy and is released under
# the MIT License:
www.eeworm.com/read/270919/4232418
java exceptions.java
// Copyright 2001 Finn Bock
package org.python.core;
import java.lang.reflect.*;
/**
* The builtin exceptions module. The entire module should be imported
* from python. None of the methods defin