mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-25 17:44:32 +02:00 
			
		
		
		
	* fix error log when loading issues caused by a xorm bug * upgrade packages * fix fmt * fix Consistency * fix tests
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2015 The Xorm Authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package xorm
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	// ErrParamsType params error
 | |
| 	ErrParamsType = errors.New("Params type error")
 | |
| 	// ErrTableNotFound table not found error
 | |
| 	ErrTableNotFound = errors.New("Table not found")
 | |
| 	// ErrUnSupportedType unsupported error
 | |
| 	ErrUnSupportedType = errors.New("Unsupported type error")
 | |
| 	// ErrNotExist record does not exist error
 | |
| 	ErrNotExist = errors.New("Record does not exist")
 | |
| 	// ErrCacheFailed cache failed error
 | |
| 	ErrCacheFailed = errors.New("Cache failed")
 | |
| 	// ErrNeedDeletedCond delete needs less one condition error
 | |
| 	ErrNeedDeletedCond = errors.New("Delete action needs at least one condition")
 | |
| 	// ErrNotImplemented not implemented
 | |
| 	ErrNotImplemented = errors.New("Not implemented")
 | |
| 	// ErrConditionType condition type unsupported
 | |
| 	ErrConditionType = errors.New("Unsupported condition type")
 | |
| 	// ErrUnSupportedSQLType parameter of SQL is not supported
 | |
| 	ErrUnSupportedSQLType = errors.New("unsupported sql type")
 | |
| )
 | |
| 
 | |
| // ErrFieldIsNotExist columns does not exist
 | |
| type ErrFieldIsNotExist struct {
 | |
| 	FieldName string
 | |
| 	TableName string
 | |
| }
 | |
| 
 | |
| func (e ErrFieldIsNotExist) Error() string {
 | |
| 	return fmt.Sprintf("field %s is not valid on table %s", e.FieldName, e.TableName)
 | |
| }
 | |
| 
 | |
| // ErrFieldIsNotValid is not valid
 | |
| type ErrFieldIsNotValid struct {
 | |
| 	FieldName string
 | |
| 	TableName string
 | |
| }
 | |
| 
 | |
| func (e ErrFieldIsNotValid) Error() string {
 | |
| 	return fmt.Sprintf("field %s is not valid on table %s", e.FieldName, e.TableName)
 | |
| }
 |