mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			872 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			872 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// 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"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	// ErrPtrSliceType represents a type error
 | 
						|
	ErrPtrSliceType = errors.New("A point to a slice is needed")
 | 
						|
	// 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")
 | 
						|
	// ErrConditionType condition type unsupported
 | 
						|
	ErrConditionType = errors.New("Unsupported condition type")
 | 
						|
)
 |