Ignore:
Timestamp:
02/04/10 21:57:54 (2 years ago)
Author:
kasper
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • MetadataBeans/trunk/src/main/java/org/eobjects/metamodel/AccessDataContextStrategy.java

    r887 r888  
    4040                                        _database = Database.open(_file, true); 
    4141                                } catch (IOException e) { 
    42                                         throw new MetaModelException(e); 
     42                                        throw new MetadataBeansException(e); 
    4343                                } 
    4444                        } 
     
    4848 
    4949        @Override 
    50         protected MutableSchema getMainSchema() throws MetaModelException { 
     50        protected MutableSchema getMainSchema() throws MetadataBeansException { 
    5151                MutableSchema schema = new MutableSchema(_file.getName()); 
    5252                Database db = getDatabase(); 
     
    7171                                schema.addTable(table); 
    7272                        } catch (Exception e) { 
    73                                 throw new MetaModelException(e); 
     73                                throw new MetadataBeansException(e); 
    7474                        } 
    7575                } 
     
    7878 
    7979        @Override 
    80         protected String getMainSchemaName() throws MetaModelException { 
     80        protected String getMainSchemaName() throws MetadataBeansException { 
    8181                return _file.getName(); 
    8282        } 
     
    108108                        return new DataSet(selectItems, data); 
    109109                } catch (Exception e) { 
    110                         throw new MetaModelException(e); 
     110                        throw new MetadataBeansException(e); 
    111111                } 
    112112        } 
Note: See TracChangeset for help on using the changeset viewer.