Package org.pentaho.platform.api.repository.datasource

Examples of org.pentaho.platform.api.repository.datasource.DatasourceMgmtServiceException


        file = repository.getFileById( databaseConnection.getId() );
      } else {
        file = repository.getFile( getPath( name ) );
      }
    } catch ( UnifiedRepositoryException ure ) {
      throw new DatasourceMgmtServiceException(
          Messages
              .getInstance()
              .getErrorString(
                  "DatasourceMgmtService.ERROR_0003_UNABLE_TO_UPDATE_DATASOURCE", databaseConnection.getName(), ure.getLocalizedMessage() ), ure ); //$NON-NLS-1$
    }
View Full Code Here


      // } catch(PasswordServiceException pse) {
      // throw new DatasourceMgmtServiceException(Messages.getInstance()
      //      .getErrorString("DatasourceMgmtService.ERROR_0007_UNABLE_TO_ENCRYPT_PASSWORD"), pse ); //$NON-NLS-1$
    } catch ( UnifiedRepositoryException ure ) {
      throw new DatasourceMgmtServiceException(
          Messages
              .getInstance()
              .getErrorString(
                  "DatasourceMgmtService.ERROR_0003_UNABLE_TO_UPDATE_DATASOURCE", databaseConnection.getName(), ure.getLocalizedMessage() ), ure ); //$NON-NLS-1$
    }
View Full Code Here

TOP

Related Classes of org.pentaho.platform.api.repository.datasource.DatasourceMgmtServiceException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.