Package org.opengis.coverage.processing

Examples of org.opengis.coverage.processing.OperationNotFoundException


        OperationDescriptor operation = (OperationDescriptor) registry.getDescriptor(RENDERED_MODE, name);
        if (operation != null) {
            return operation;
        }
       
        throw new OperationNotFoundException(Errors.format(ErrorKeys.OPERATION_NOT_FOUND_$1, name));
    }
View Full Code Here


          }
          final Operation operation = operations.get(name);
          if (operation != null) {
              return operation;
          }
          throw new OperationNotFoundException(Errors.getResources(getLocale()).getString(
                  ErrorKeys.OPERATION_NOT_FOUND_$1, name));
      }
    }
View Full Code Here

       */
      final AbstractOperation op;
      try {
          op = (AbstractOperation) operation;
      } catch (ClassCastException cause) {
          final OperationNotFoundException exception = new OperationNotFoundException(
                      Errors.getResources(getLocale()).getString(
                      ErrorKeys.OPERATION_NOT_FOUND_$1, operationName));
          exception.initCause(cause);
          throw exception;
      }
     
      //set up hints
      final Hints localMergeHints=this.hints.clone();
View Full Code Here

TOP

Related Classes of org.opengis.coverage.processing.OperationNotFoundException

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.